문제
https://www.acmicpc.net/problem/2475
풀이
import sys
a, b, c, d, e = map(int, sys.stdin.readline().split())
print((a**2 + b**2 + c**2 + d**2 + e**2) % 10)
- 빠르고 짧은 Pythonic Code
print(sum(int(i)**2 for i in input().split())%10)
'Algorithms > 코테 문풀' 카테고리의 다른 글
[백준 9093번] 단어 뒤집기 (0) | 2023.08.13 |
---|---|
[백준 10828번] 스택 (0) | 2023.08.13 |
백준[10250번] ACM 호텔 (0) | 2023.08.12 |
엘리스 - 문자열 앞뒤 검사하기(py), Palindrome (0) | 2023.07.18 |
[Greedy] 엘리스 - 구슬 꾸러미(py) (0) | 2023.07.18 |