Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- cryptography
- 구현
- HackCTF
- misc
- 인코그니토
- MySQL
- xcz.kr
- wargame
- 사칙연산
- CTF
- 수학
- writeup
- 문자열
- Digital Forensics
- Python
- Web
- 그리디 알고리즘
- C
- Database
- Network
- N0Named
- Web Hacking
- Forensics
- Text
- 정렬
- Incognito
- 써니나타스
- 백준
- php
- SuNiNaTas
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2475번 검증수 본문
[Baekjoon/Python3] 2475번 검증수
nums = list(map(int, input().split()))
res = 0
for i in range(5):
res += pow(nums[i], 2)
print(res % 10)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2490번 윷놀이 (0) | 2020.12.03 |
---|---|
[Baekjoon/Python3] 2480번 주사위 세개 (0) | 2020.12.03 |
[Baekjoon/Python3] 2460번 지능형 기차 2 (0) | 2020.12.03 |
[Baekjoon/Python3] 2455번 지능형 기차 (0) | 2020.12.03 |
[Baekjoon/Python3] 2446번 별 찍기 - 9 (0) | 2020.12.03 |
Comments