-Code
n = int(input())
first_dice = list(map(int, input().split()))
second_dice = list(map(int, input().split()))
res = 0
for i in range(n):
for j in range(n):
if first_dice[i] > second_dice[j]:
res += 1
elif first_dice[i] < second_dice[j]:
res -= 1
if res > 0:
print("first")
elif res < 0:
print("second")
else:
print("tie")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 14729번 칠무해 (0) | 2024.10.14 |
---|---|
[백준/파이썬] 14471번 포인트 카드 (1) | 2024.10.13 |
[백준/파이썬] 9443번 Arrangement of Contest (0) | 2024.10.11 |
[백준/파이썬] 32288번 바코드 닉네임 (0) | 2024.10.10 |
[백준/파이썬] 13773번 Olympic Games (1) | 2024.10.09 |