結果

問題 No.946 箱箱箱
ユーザー pekempeypekempey
提出日時 2019-12-09 00:35:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 87,208 KB
実行使用メモリ 77,260 KB
最終ジャッジ日時 2023-08-30 23:17:41
合計ジャッジ時間 8,185 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,008 KB
testcase_01 AC 72 ms
71,192 KB
testcase_02 AC 73 ms
71,208 KB
testcase_03 WA -
testcase_04 AC 117 ms
76,928 KB
testcase_05 WA -
testcase_06 AC 116 ms
76,640 KB
testcase_07 AC 118 ms
77,104 KB
testcase_08 AC 103 ms
76,828 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 120 ms
77,044 KB
testcase_13 AC 117 ms
76,812 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 118 ms
76,816 KB
testcase_20 AC 76 ms
75,596 KB
testcase_21 AC 119 ms
76,880 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 115 ms
76,876 KB
testcase_26 WA -
testcase_27 AC 116 ms
76,856 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 99 ms
76,956 KB
testcase_31 WA -
testcase_32 AC 115 ms
77,048 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 114 ms
76,788 KB
testcase_37 AC 116 ms
76,704 KB
testcase_38 AC 119 ms
76,704 KB
testcase_39 AC 116 ms
76,928 KB
testcase_40 AC 118 ms
76,640 KB
testcase_41 WA -
testcase_42 AC 118 ms
77,024 KB
testcase_43 AC 117 ms
76,876 KB
testcase_44 AC 116 ms
76,856 KB
testcase_45 AC 115 ms
76,948 KB
testcase_46 AC 117 ms
76,964 KB
testcase_47 AC 72 ms
71,292 KB
testcase_48 AC 71 ms
71,312 KB
testcase_49 AC 72 ms
71,148 KB
testcase_50 AC 72 ms
71,248 KB
testcase_51 WA -
testcase_52 AC 72 ms
71,172 KB
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

aru = False

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

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