일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dp
- nav-tab
- HTML
- baekjun
- algotythm
- Crawling
- 백준
- Algorythm
- ubuntu
- raspberrypi
- 라즈베리파이3b+
- 크롤링
- 2579
- dynaminprogramming
- bootstrap
- 라즈베리파이3
- 알고리즘
- Python
- 16.04
- 트리
- CSS
- MongoDB
- node.js
- 2909
- 라즈베리파이
- springboot3.x
- 파이썬
- 13237
- NAV
- 라즈비안
Archives
- Today
- Total
노트
[백준] 23028번 5학년은 다니기 싫어요 python 본문
n, a, b = map(int,input().split())
hakgi = [list(map(int,input().split())) for _ in range(10)]
if b >= 130 and a >= 66:
print("Nice")
else:
for i in range(8-n):
a += hakgi[i][0] * 3
b += hakgi[i][0] * 3
score = 6 - hakgi[i][0]
if score < hakgi[i][1]:
b += score * 3
else:
b += hakgi[i][1] * 3
score = 6
if b >= 130 and a >= 66:
print("Nice")
else:
print("Nae ga wae")
'알고리즘' 카테고리의 다른 글
[백준] 25631번 마트료시카 합치기 python (0) | 2024.04.07 |
---|---|
[백준] 1240번 노드사이의 거리 python (0) | 2024.03.17 |
[백준] 13237번 Binary tree python (0) | 2024.03.01 |
[백준] 14501번 퇴사 python (0) | 2024.03.01 |
[백준] 1389번 케빈 베이컨의 6단계 법칙 python (0) | 2024.02.19 |
Comments