結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,488 KB
testcase_01 AC 38 ms
52,896 KB
testcase_02 AC 36 ms
53,280 KB
testcase_03 AC 37 ms
53,488 KB
testcase_04 AC 36 ms
53,692 KB
testcase_05 AC 38 ms
52,732 KB
testcase_06 AC 37 ms
52,592 KB
testcase_07 AC 37 ms
52,448 KB
testcase_08 AC 36 ms
53,020 KB
testcase_09 AC 37 ms
52,552 KB
testcase_10 AC 37 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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