-Code
def sol(w1, w2):
if w1 == "R" and w2 == "S":
return True
elif w1 == "S" and w2 == "P":
return True
elif w1 == "P" and w2 == "R":
return True
else:
return False
n = int(input())
a = input()
b = input()
a_win, b_win = 0, 0
for i in range(n):
if a[i] == b[i]:
continue
if sol(a[i], b[i]):
a_win += 1
else:
b_win += 1
print("victory" if a_win > b_win else "defeat")
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 32515번 BB84 (0) | 2024.11.04 |
---|---|
[백준/파이썬] 32327번 Dusa And The Yobis (1) | 2024.11.03 |
[백준/파이썬] 32604번 Jumbled Scoreboards (0) | 2024.11.01 |
[백준/파이썬] 26336번 Are We Stopping Again? (0) | 2024.10.31 |
[백준/파이썬] 32305번 Farmers’ Market (1) | 2024.10.30 |