結果

問題 No.946 箱箱箱
ユーザー pekempeypekempey
提出日時 2019-12-09 01:20:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 77,872 KB
最終ジャッジ日時 2024-06-27 03:03:16
合計ジャッジ時間 9,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,512 KB
testcase_01 AC 41 ms
54,356 KB
testcase_02 AC 41 ms
54,992 KB
testcase_03 AC 182 ms
77,548 KB
testcase_04 AC 181 ms
77,404 KB
testcase_05 AC 42 ms
54,756 KB
testcase_06 AC 175 ms
77,312 KB
testcase_07 AC 177 ms
77,600 KB
testcase_08 AC 172 ms
77,196 KB
testcase_09 AC 181 ms
77,208 KB
testcase_10 AC 177 ms
77,564 KB
testcase_11 AC 44 ms
53,956 KB
testcase_12 AC 182 ms
77,428 KB
testcase_13 AC 177 ms
77,300 KB
testcase_14 AC 177 ms
77,628 KB
testcase_15 AC 175 ms
77,724 KB
testcase_16 AC 173 ms
77,872 KB
testcase_17 AC 177 ms
77,724 KB
testcase_18 AC 181 ms
77,292 KB
testcase_19 AC 182 ms
77,308 KB
testcase_20 AC 49 ms
61,376 KB
testcase_21 AC 168 ms
77,272 KB
testcase_22 AC 172 ms
77,508 KB
testcase_23 AC 177 ms
77,612 KB
testcase_24 AC 173 ms
77,604 KB
testcase_25 AC 179 ms
77,664 KB
testcase_26 AC 180 ms
77,576 KB
testcase_27 AC 184 ms
77,480 KB
testcase_28 AC 192 ms
77,532 KB
testcase_29 AC 185 ms
77,288 KB
testcase_30 AC 187 ms
77,424 KB
testcase_31 AC 175 ms
77,492 KB
testcase_32 AC 172 ms
77,844 KB
testcase_33 AC 168 ms
77,432 KB
testcase_34 AC 172 ms
77,384 KB
testcase_35 AC 181 ms
77,576 KB
testcase_36 AC 181 ms
77,152 KB
testcase_37 AC 183 ms
77,276 KB
testcase_38 AC 186 ms
77,604 KB
testcase_39 AC 173 ms
77,544 KB
testcase_40 AC 166 ms
77,160 KB
testcase_41 AC 170 ms
77,632 KB
testcase_42 AC 171 ms
77,416 KB
testcase_43 AC 176 ms
77,292 KB
testcase_44 AC 181 ms
77,708 KB
testcase_45 AC 172 ms
77,164 KB
testcase_46 AC 175 ms
77,580 KB
testcase_47 AC 41 ms
53,944 KB
testcase_48 AC 42 ms
54,876 KB
testcase_49 AC 42 ms
54,856 KB
testcase_50 AC 42 ms
54,504 KB
testcase_51 AC 41 ms
55,328 KB
testcase_52 AC 41 ms
54,196 KB
testcase_53 AC 42 ms
54,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

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

g = [0] * (N + 1)
for i in reversed(range(N)):
  s = set()
  x = 0
  for j in range(i, N):
    x ^= A[j]
    s.add(x ^ g[j + 1])
  while g[i] in s:
    g[i] += 1

print('Takahashi' if g[0] != 0 else 'Takanashi')
0