[백준] #10953 A + B - 6 python
2023. 1. 14. 06:00
https://www.acmicpc.net/problem/10953
📕 설명 📕
python 스타일로 indexing하여 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
for _ in range(N):
S = input()
print(int(S[0])+int(S[2]))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #1075 나누기 python (0) | 2023.01.16 |
---|---|
[백준] #10886 0 = not cute / 1 = cute python (0) | 2023.01.15 |
[백준] #2559 수열 python (0) | 2023.01.13 |
[백준] #11659 구간 합 구하기 4 (0) | 2023.01.12 |
[백준] #9663 N-Queen python (0) | 2023.01.11 |