結果
問題 |
No.102 トランプを奪え
|
ユーザー |
|
提出日時 | 2025-06-06 19:19:05 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 37 ms / 5,000 ms |
コード長 | 129 bytes |
コンパイル時間 | 599 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 53,964 KB |
最終ジャッジ日時 | 2025-06-06 19:19:07 |
合計ジャッジ時間 | 2,138 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 |
ソースコード
N = list(map(int, input().split())) ans = 0 for i in range(4): ans ^= N[i]%4 if ans: print('Taro') else: print('Jiro')