반응형
[ Contents ]
1. 문제 (링크 참조)
2. 문제 풀이
계획한 페이지 수보다 실제 공부한 페이지 수가 이상인 횟수를 구합니다.
반응형
3. 코드
import sys
input = sys.stdin.readline
# 입력
N = int(input())
page = list(map(int, input().split()))
study = list(map(int, input().split()))
res = 0
for i, j in zip(page, study):
if i-j <= 0:
res += 1
print(res)
반응형
'Algorithm' 카테고리의 다른 글
[구현/수학] 백준 29752 최장 스트릭 - 파이썬(Python) (0) | 2023.09.18 |
---|---|
[구현/수학] 백준 29751 삼각형 - 파이썬(Python) (0) | 2023.09.18 |
[구현/수학] 백준 29155 개발자 지망생 구름이의 취업 뽀개기 - 파이썬(Python) (0) | 2023.09.04 |
[구현/수학] 백준 28464 Potato - 파이썬(Python) (0) | 2023.09.04 |
[구현/수학] 백준 29197 아침 태권도 - 파이썬(Python) (0) | 2023.08.21 |
댓글