結果

問題 No.102 トランプを奪え
ユーザー gigurururugigurururu
提出日時 2014-12-12 21:01:29
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 236 bytes
コンパイル時間 1,318 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-06-11 21:01:23
合計ジャッジ時間 2,742 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
75,264 KB
testcase_01 AC 89 ms
75,008 KB
testcase_02 AC 89 ms
75,520 KB
testcase_03 AC 88 ms
75,264 KB
testcase_04 AC 90 ms
75,136 KB
testcase_05 AC 91 ms
75,264 KB
testcase_06 AC 93 ms
75,136 KB
testcase_07 AC 96 ms
75,648 KB
testcase_08 AC 94 ms
75,136 KB
testcase_09 AC 93 ms
75,136 KB
testcase_10 AC 91 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8
N = [int(i)%4 for i in raw_input().split()]

# N%4の全てのXORを取ったときに0になればバランスがとれている状態なので、後攻必勝
print("Jiro" if reduce(lambda x,y: x^y,N)==0 else "Taro")
0