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
- 구현
- CTF
- cryptography
- xcz.kr
- Database
- 인코그니토
- 그리디 알고리즘
- 수학
- Network
- N0Named
- 문자열
- Text
- MySQL
- wargame
- HackCTF
- 백준
- 써니나타스
- 정렬
- Web Hacking
- 사칙연산
- misc
- Digital Forensics
- C
- Incognito
- SuNiNaTas
- Forensics
- writeup
- php
- Web
- Python
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 2506번 점수계산 본문
[Baekjoon/Python3] 2506번 점수계산
n = int(input())
res = list(map(int, input().split()))
total = 0 # 총점
plus = 0 # 가산점
for i in res:
if i == 1:
total += 1 + plus
plus += 1
else:
plus = 0
print(total)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 2523번 별 찍기 - 13 (0) | 2020.12.03 |
---|---|
[Baekjoon/Python3] 2522번 별 찍기 - 12 (0) | 2020.12.03 |
[Baekjoon/Python3] 2490번 윷놀이 (0) | 2020.12.03 |
[Baekjoon/Python3] 2480번 주사위 세개 (0) | 2020.12.03 |
[Baekjoon/Python3] 2475번 검증수 (0) | 2020.12.03 |
Comments