結果

問題 No.102 トランプを奪え
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-02 15:33:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 124 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,380 KB
最終ジャッジ日時 2024-06-06 00:43:17
合計ジャッジ時間 1,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,400 KB
testcase_01 AC 34 ms
52,540 KB
testcase_02 AC 35 ms
52,616 KB
testcase_03 AC 33 ms
52,664 KB
testcase_04 AC 34 ms
51,852 KB
testcase_05 AC 34 ms
51,996 KB
testcase_06 AC 33 ms
53,140 KB
testcase_07 AC 34 ms
53,380 KB
testcase_08 AC 34 ms
52,300 KB
testcase_09 AC 34 ms
53,056 KB
testcase_10 AC 34 ms
52,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = list(map(int, input().split()))

t = 0
for a in A:
    t ^= (a%4)

if t == 0:
    print('Jiro')
else:
    print('Taro')
0