結果

問題 No.102 トランプを奪え
ユーザー 👑 H20H20
提出日時 2021-12-21 13:27:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 140 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 87,292 KB
実行使用メモリ 71,400 KB
最終ジャッジ日時 2023-10-13 19:48:45
合計ジャッジ時間 1,967 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,328 KB
testcase_01 AC 71 ms
71,216 KB
testcase_02 AC 71 ms
71,364 KB
testcase_03 AC 75 ms
71,160 KB
testcase_04 AC 73 ms
71,400 KB
testcase_05 AC 71 ms
71,252 KB
testcase_06 AC 73 ms
71,340 KB
testcase_07 AC 72 ms
71,332 KB
testcase_08 AC 74 ms
71,388 KB
testcase_09 AC 75 ms
71,132 KB
testcase_10 AC 72 ms
71,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int,input().split()))
G = [0,1,2,3]*5
xor = 0
for n in N:
    xor=xor^G[n]
if xor==0:
    print('Jiro')
else:
    print('Taro')
0