結果

問題 No.946 箱箱箱
ユーザー pekempeypekempey
提出日時 2019-12-09 00:35:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 70,864 KB
最終ジャッジ日時 2024-06-10 22:38:19
合計ジャッジ時間 5,597 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,752 KB
testcase_01 AC 33 ms
52,272 KB
testcase_02 AC 34 ms
52,560 KB
testcase_03 WA -
testcase_04 AC 82 ms
68,760 KB
testcase_05 WA -
testcase_06 AC 73 ms
68,900 KB
testcase_07 AC 75 ms
69,940 KB
testcase_08 AC 67 ms
68,552 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 77 ms
69,412 KB
testcase_13 AC 84 ms
68,480 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 77 ms
68,496 KB
testcase_20 AC 39 ms
59,124 KB
testcase_21 AC 77 ms
70,456 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 75 ms
68,424 KB
testcase_26 WA -
testcase_27 AC 75 ms
68,784 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 60 ms
69,512 KB
testcase_31 WA -
testcase_32 AC 74 ms
68,424 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 75 ms
68,148 KB
testcase_37 AC 72 ms
68,480 KB
testcase_38 AC 74 ms
68,788 KB
testcase_39 AC 77 ms
69,816 KB
testcase_40 AC 74 ms
69,108 KB
testcase_41 WA -
testcase_42 AC 73 ms
68,640 KB
testcase_43 AC 73 ms
68,868 KB
testcase_44 AC 76 ms
69,472 KB
testcase_45 AC 74 ms
68,660 KB
testcase_46 AC 77 ms
69,496 KB
testcase_47 AC 37 ms
51,996 KB
testcase_48 AC 33 ms
52,904 KB
testcase_49 AC 33 ms
51,856 KB
testcase_50 AC 35 ms
52,632 KB
testcase_51 WA -
testcase_52 AC 32 ms
53,228 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