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
- Database
- cryptography
- xcz.kr
- Digital Forensics
- Incognito
- Web Hacking
- SuNiNaTas
- CTF
- Forensics
- Network
- Python
- 수학
- writeup
- Web
- 써니나타스
- 인코그니토
- HackCTF
- 문자열
- wargame
- 백준
- MySQL
- 구현
- 정렬
- N0Named
- 그리디 알고리즘
- php
- misc
- 사칙연산
- C
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 14720번 우유 축제 본문
[Baekjoon/Python3] 14720번 우유 축제
n = int(input())
store = list(map(int, input().split()))
cnt = 0
for i in range(n):
if store[i] == cnt % 3:
cnt += 1
print(cnt)
n = int(input())
store = list(map(int, input().split()))
i, cnt = 0, 0
for s in store:
if s == i:
cnt += 1
if i == 2:
i = 0
else:
i += 1
print(cnt)
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 14909번 양수 개수 세기 (0) | 2020.12.08 |
---|---|
[Baekjoon/Python3] 14730번 謎紛芥索紀 (Small) (0) | 2020.12.08 |
[Baekjoon/Python3] 14681번 사분면 고르기 (0) | 2020.12.08 |
[Baekjoon/Python3] 14652번 나는 행복합니다~ (0) | 2020.12.08 |
[Baekjoon/Python3/Text] 14645번 와이버스 부릉부릉 (0) | 2020.12.08 |
Comments