728x90
반응형
간단한 사칙연산 문제이다.
res = 0
for n in list(map(int, input().split())):
res += n**2
print(res%10)
더 짧게 짠 코드
print(sum([n**2 for n in map(int, input().split())]) % 10)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 3003번 킹, 퀸, 룩, 비숍, 나이트, 폰(python) (0) | 2021.02.01 |
---|---|
백준 알고리즘 2845번 파티가 끝나고 난 뒤(python) (0) | 2021.02.01 |
백준 알고리즘 1550번 16진수(python) (0) | 2021.02.01 |
백준 알고리즘 1271번 엄청난 부자2(python) (0) | 2021.02.01 |
백준 알고리즘 7795번 먹을 것인가 먹힐 것인가(python) (4) | 2021.02.01 |