結果

問題 No.946 箱箱箱
ユーザー pekempeypekempey
提出日時 2019-12-09 00:08:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 190 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 86,416 KB
実行使用メモリ 76,772 KB
最終ジャッジ日時 2023-08-30 22:40:31
合計ジャッジ時間 8,023 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,196 KB
testcase_01 AC 72 ms
71,128 KB
testcase_02 AC 75 ms
71,168 KB
testcase_03 AC 94 ms
76,620 KB
testcase_04 AC 92 ms
76,288 KB
testcase_05 AC 71 ms
71,100 KB
testcase_06 AC 92 ms
76,708 KB
testcase_07 AC 94 ms
76,440 KB
testcase_08 AC 93 ms
76,736 KB
testcase_09 AC 93 ms
76,576 KB
testcase_10 AC 93 ms
76,296 KB
testcase_11 AC 72 ms
71,276 KB
testcase_12 AC 94 ms
76,508 KB
testcase_13 AC 93 ms
76,684 KB
testcase_14 AC 91 ms
76,448 KB
testcase_15 AC 93 ms
76,396 KB
testcase_16 AC 91 ms
76,640 KB
testcase_17 AC 93 ms
76,772 KB
testcase_18 AC 92 ms
76,500 KB
testcase_19 AC 93 ms
76,648 KB
testcase_20 AC 72 ms
71,136 KB
testcase_21 AC 93 ms
76,412 KB
testcase_22 AC 92 ms
76,424 KB
testcase_23 AC 92 ms
76,192 KB
testcase_24 AC 93 ms
76,532 KB
testcase_25 AC 93 ms
76,644 KB
testcase_26 AC 92 ms
76,392 KB
testcase_27 AC 92 ms
76,768 KB
testcase_28 AC 93 ms
76,292 KB
testcase_29 AC 93 ms
76,500 KB
testcase_30 AC 93 ms
76,460 KB
testcase_31 AC 94 ms
76,296 KB
testcase_32 AC 92 ms
76,396 KB
testcase_33 AC 93 ms
76,288 KB
testcase_34 AC 94 ms
76,388 KB
testcase_35 AC 93 ms
76,392 KB
testcase_36 AC 92 ms
76,244 KB
testcase_37 AC 93 ms
76,196 KB
testcase_38 AC 93 ms
76,624 KB
testcase_39 AC 94 ms
76,712 KB
testcase_40 AC 93 ms
76,692 KB
testcase_41 AC 94 ms
76,188 KB
testcase_42 AC 94 ms
76,532 KB
testcase_43 AC 93 ms
76,540 KB
testcase_44 AC 92 ms
76,512 KB
testcase_45 AC 91 ms
76,624 KB
testcase_46 AC 93 ms
76,500 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 72 ms
71,176 KB
testcase_52 WA -
testcase_53 AC 71 ms
70,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
for i in range(N):
  A.append(int(input()))

x = 0
aru = False
for i in range(N):
  x ^= A[i]
  if x == 0:
    aru = True

print('Takahashi' if aru else 'Takanashi')
0