結果

問題 No.946 箱箱箱
ユーザー tamatotamato
提出日時 2019-12-09 09:06:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 86,944 KB
実行使用メモリ 76,292 KB
最終ジャッジ日時 2023-09-02 14:08:14
合計ジャッジ時間 6,814 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
70,976 KB
testcase_01 AC 72 ms
71,044 KB
testcase_02 AC 75 ms
71,296 KB
testcase_03 AC 75 ms
75,940 KB
testcase_04 AC 76 ms
76,204 KB
testcase_05 AC 73 ms
71,156 KB
testcase_06 AC 77 ms
75,888 KB
testcase_07 AC 74 ms
71,228 KB
testcase_08 AC 76 ms
75,760 KB
testcase_09 AC 77 ms
76,096 KB
testcase_10 AC 75 ms
76,052 KB
testcase_11 AC 73 ms
71,060 KB
testcase_12 AC 72 ms
71,340 KB
testcase_13 AC 74 ms
71,104 KB
testcase_14 AC 78 ms
76,284 KB
testcase_15 AC 76 ms
76,120 KB
testcase_16 AC 78 ms
76,156 KB
testcase_17 AC 77 ms
76,192 KB
testcase_18 AC 74 ms
76,148 KB
testcase_19 AC 71 ms
71,352 KB
testcase_20 AC 72 ms
71,128 KB
testcase_21 AC 72 ms
70,988 KB
testcase_22 AC 74 ms
75,880 KB
testcase_23 AC 77 ms
76,132 KB
testcase_24 AC 76 ms
76,092 KB
testcase_25 AC 71 ms
71,160 KB
testcase_26 AC 77 ms
76,072 KB
testcase_27 AC 72 ms
71,048 KB
testcase_28 AC 77 ms
75,992 KB
testcase_29 AC 76 ms
75,944 KB
testcase_30 AC 77 ms
75,812 KB
testcase_31 AC 77 ms
75,880 KB
testcase_32 AC 73 ms
71,184 KB
testcase_33 AC 76 ms
76,008 KB
testcase_34 AC 76 ms
76,076 KB
testcase_35 AC 76 ms
76,040 KB
testcase_36 AC 76 ms
75,860 KB
testcase_37 AC 78 ms
76,224 KB
testcase_38 AC 72 ms
71,188 KB
testcase_39 AC 72 ms
70,984 KB
testcase_40 AC 72 ms
71,128 KB
testcase_41 AC 75 ms
76,116 KB
testcase_42 AC 73 ms
71,040 KB
testcase_43 AC 80 ms
75,884 KB
testcase_44 AC 74 ms
71,172 KB
testcase_45 AC 80 ms
76,124 KB
testcase_46 AC 77 ms
76,292 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 72 ms
71,144 KB
testcase_52 WA -
testcase_53 AC 71 ms
71,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

N = int(input())
tmp = 0
for _ in range(N):
    a = int(input())
    tmp ^= a
    if tmp == 0:
        print('Takahashi')
        exit()
print('Takanashi')
0