結果

問題 No.102 トランプを奪え
ユーザー 👑 H20H20
提出日時 2021-12-21 13:26:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 137 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 87,220 KB
実行使用メモリ 71,592 KB
最終ジャッジ日時 2023-10-13 19:48:43
合計ジャッジ時間 2,107 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,252 KB
testcase_01 AC 74 ms
71,120 KB
testcase_02 AC 73 ms
71,400 KB
testcase_03 AC 73 ms
71,220 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 73 ms
71,132 KB
testcase_07 WA -
testcase_08 AC 73 ms
71,536 KB
testcase_09 AC 74 ms
71,592 KB
testcase_10 AC 73 ms
71,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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