반응형
츄르사려고 코딩하는 코집사입니다.
1. [Softeer] Softeer [한양대 HCPC 2023] X marks the Spot 파이썬(Python)
1) 문제 제목 : [한양대 HCPC 2023] X marks the Spot
2) 문제 출처
https://softeer.ai/practice/7703
2. 풀이
- 문자열에서 x 또는 X를 찾아서 해당 인덱스를 대문자로 출력하면 된다.
3. 소스 코드
import sys
input = sys.stdin.readline
N = int(input())
for _ in range(N) :
S, T = map(str, input().split())
if S.find('x') != -1 :
print(T[S.find('x')].upper(), end="")
elif S.find('X') != -1 :
print(T[S.index('X')].upper(), end="")
반응형
'알고리즘 > Softeer' 카테고리의 다른 글
[Softeer] Softeer [한양대 HCPC 2023] Yeah, but How? 파이썬(Python) (0) | 2024.11.05 |
---|---|
[Softeer] Softeer [한양대 HCPC 2023] Recovering the Region 파이썬(Python) (0) | 2024.11.05 |
[Softeer] Softeer 나무 심기 파이썬(Python) (0) | 2024.11.05 |
[Softeer] Softeer [한양대 HCPC 2023] Tren del Fin del Mundo 파이썬(Python) (0) | 2024.11.05 |
[Softeer] Softeer 연탄 나무 공격 파이썬(Python) (0) | 2024.10.30 |
[Softeer] Softeer 연탄 배달의 시작 파이썬(Python) (0) | 2024.10.29 |
[Softeer] Softeer [한양대 HCPC 2023] 개표 파이썬(Python) (0) | 2024.10.29 |
[Softeer] Softeer 효도의 시작 파이썬(Python) (0) | 2024.10.29 |
최근댓글