728x90
반응형
단순 구현 문제이다.
s1, s2 = map(int, input().split())
li1 = [list(map(int, input().split())) for _ in range(s1)]
li2 = [list(map(int, input().split())) for _ in range(s2)]
for i in range(s1):
if li1[i][0] != li1[i][1]:
print("Wrong Answer")
exit()
for i in range(s2):
if li2[i][0] != li2[i][1]:
print("Why Wrong!!!")
exit()
print("Accepted")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 15923번 욱제는 건축왕이야!!(python) (0) | 2021.02.27 |
---|---|
백준 알고리즘 15917번 노솔브 방지문제야!!(python) (0) | 2021.02.27 |
백준 알고리즘 15818번 오버플로우와 모듈러(python) (0) | 2021.02.27 |
백준 알고리즘 15792번 A/B - 2(python) (0) | 2021.02.27 |
백준 알고리즘 15784번 질투진서(python) (0) | 2021.02.27 |