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
- Text
- 구현
- 백준
- xcz.kr
- php
- 그리디 알고리즘
- Network
- Digital Forensics
- 사칙연산
- 문자열
- Web Hacking
- Database
- HackCTF
- Web
- 인코그니토
- wargame
- writeup
- cryptography
- Forensics
- Incognito
- C
- CTF
- MySQL
- N0Named
- SuNiNaTas
- misc
- Python
- 써니나타스
- 수학
- 정렬
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2010번 플러그 본문
[Baekjoon/Python3] 2010번 플러그
import sys
n = int(sys.stdin.readline())
total = 0
for i in range(n):
total += int(sys.stdin.readline())
sys.stdout.write(str(total - (n - 1)))
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2312번 수 복원하기 (0) | 2020.12.03 |
---|---|
[Baekjoon/Python3] 2163번 초콜릿 자르기 (0) | 2020.12.03 |
[Baekjoon/Python3] 1978번 소수 찾기 (0) | 2020.12.03 |
[Baekjoon/Python3] 1977번 완전제곱수 (0) | 2020.12.03 |
[Baekjoon/Python3] 1934번 최소공배수 (0) | 2020.12.03 |
Comments