結果

問題 No.102 トランプを奪え
ユーザー ayaoniayaoni
提出日時 2020-11-28 23:52:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 230 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-09-13 01:41:47
合計ジャッジ時間 1,221 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,692 KB
testcase_01 AC 36 ms
52,648 KB
testcase_02 AC 36 ms
53,724 KB
testcase_03 AC 35 ms
53,312 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 35 ms
52,192 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
52,260 KB
testcase_10 AC 35 ms
52,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())


N1,N2,N3,N4 = MI()
Grundy = [0,1,2,0,1,2,0,1,2,0,1,2,0,1]
if Grundy[N1]^Grundy[N2]^Grundy[N3]^Grundy[N4] == 0:
    print('Jiro')
else:
    print('Taro')
0