728x90
반응형
단순 사칙연산 문제이다.
A, B, C, D = map(int, input().split())
li = list(map(int, input().split()))
for n in li:
attacked = 0
if 0 < n % (A+B) <= A:
attacked += 1
if 0 < n % (C+D) <= C:
attacked += 1
print(attacked)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 3029번 경고(python) (0) | 2021.02.12 |
---|---|
백준 알고리즘 3028번 창영마을(python) (0) | 2021.02.12 |
백준 알고리즘 2985번 세 수(python) (0) | 2021.02.12 |
백준 알고리즘 2975번 Transactions(python) (0) | 2021.02.12 |
백준 알고리즘 2959번 거북이(python) (0) | 2021.02.12 |