結果

問題 No.102 トランプを奪え
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-02 15:33:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 124 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 87,112 KB
実行使用メモリ 71,464 KB
最終ジャッジ日時 2023-08-24 23:48:11
合計ジャッジ時間 2,810 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,356 KB
testcase_01 AC 68 ms
71,380 KB
testcase_02 AC 68 ms
71,252 KB
testcase_03 AC 69 ms
71,088 KB
testcase_04 AC 68 ms
71,384 KB
testcase_05 AC 69 ms
71,360 KB
testcase_06 AC 70 ms
71,352 KB
testcase_07 AC 69 ms
71,444 KB
testcase_08 AC 70 ms
71,464 KB
testcase_09 AC 69 ms
71,412 KB
testcase_10 AC 70 ms
71,388 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