結果

問題 No.102 トランプを奪え
ユーザー H3PO4H3PO4
提出日時 2022-08-26 09:14:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 469 ms / 5,000 ms
コード長 125 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,024 KB
最終ジャッジ日時 2024-04-21 13:05:16
合計ジャッジ時間 8,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
43,896 KB
testcase_01 AC 460 ms
43,640 KB
testcase_02 AC 452 ms
43,908 KB
testcase_03 AC 460 ms
43,880 KB
testcase_04 AC 444 ms
43,900 KB
testcase_05 AC 459 ms
43,632 KB
testcase_06 AC 459 ms
43,768 KB
testcase_07 AC 469 ms
43,512 KB
testcase_08 AC 452 ms
43,896 KB
testcase_09 AC 456 ms
43,880 KB
testcase_10 AC 456 ms
44,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = np.fromstring(input(), sep=" ", dtype=int)
print("Taro" if np.bitwise_xor.reduce(N % 4) else "Jiro")
0