結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 460 ms
43,644 KB
testcase_01 AC 466 ms
43,520 KB
testcase_02 AC 464 ms
44,156 KB
testcase_03 AC 468 ms
43,896 KB
testcase_04 AC 470 ms
44,144 KB
testcase_05 AC 462 ms
43,504 KB
testcase_06 AC 458 ms
43,520 KB
testcase_07 AC 464 ms
44,028 KB
testcase_08 AC 456 ms
44,024 KB
testcase_09 AC 455 ms
43,512 KB
testcase_10 AC 465 ms
44,028 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