結果

問題 No.946 箱箱箱
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-27 00:14:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 77,600 KB
最終ジャッジ日時 2024-10-27 00:14:25
合計ジャッジ時間 9,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,948 KB
testcase_01 AC 36 ms
52,572 KB
testcase_02 AC 36 ms
53,872 KB
testcase_03 AC 170 ms
77,232 KB
testcase_04 AC 179 ms
76,768 KB
testcase_05 AC 36 ms
53,076 KB
testcase_06 AC 164 ms
77,056 KB
testcase_07 AC 157 ms
77,328 KB
testcase_08 AC 157 ms
76,896 KB
testcase_09 AC 160 ms
76,556 KB
testcase_10 AC 156 ms
77,288 KB
testcase_11 AC 37 ms
53,068 KB
testcase_12 AC 158 ms
77,152 KB
testcase_13 AC 171 ms
76,856 KB
testcase_14 AC 155 ms
77,080 KB
testcase_15 AC 153 ms
77,176 KB
testcase_16 AC 158 ms
77,000 KB
testcase_17 AC 167 ms
77,600 KB
testcase_18 AC 155 ms
77,140 KB
testcase_19 AC 158 ms
77,016 KB
testcase_20 AC 40 ms
60,100 KB
testcase_21 AC 154 ms
77,076 KB
testcase_22 AC 152 ms
77,080 KB
testcase_23 AC 152 ms
77,156 KB
testcase_24 AC 150 ms
76,828 KB
testcase_25 AC 161 ms
76,964 KB
testcase_26 AC 159 ms
77,012 KB
testcase_27 AC 156 ms
77,180 KB
testcase_28 AC 184 ms
77,360 KB
testcase_29 AC 152 ms
76,844 KB
testcase_30 AC 171 ms
76,948 KB
testcase_31 AC 154 ms
77,184 KB
testcase_32 AC 157 ms
77,284 KB
testcase_33 AC 157 ms
77,136 KB
testcase_34 AC 163 ms
77,100 KB
testcase_35 AC 172 ms
77,340 KB
testcase_36 AC 161 ms
76,696 KB
testcase_37 AC 161 ms
76,872 KB
testcase_38 AC 159 ms
77,156 KB
testcase_39 AC 159 ms
77,468 KB
testcase_40 AC 154 ms
76,892 KB
testcase_41 AC 158 ms
77,240 KB
testcase_42 AC 167 ms
76,856 KB
testcase_43 AC 163 ms
76,616 KB
testcase_44 AC 159 ms
76,664 KB
testcase_45 AC 163 ms
76,996 KB
testcase_46 AC 162 ms
77,012 KB
testcase_47 AC 35 ms
53,132 KB
testcase_48 AC 34 ms
52,336 KB
testcase_49 AC 35 ms
52,220 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 35 ms
52,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(input()) for _ in range(N)] + [0]
dp = [0] * (N+1)
dp[N-1] = 1


def mex(data):
    s = set(data)
    for i in range(3000):
        if i not in s:
            return i


for i in range(N-2, -1, -1):
    g = A[i]
    memo = []
    for j in range(i+1, N+1):
        memo.append(g ^ dp[j])
        g ^= A[j]
    dp[i] = mex(memo)


print('Takahashi' if dp[0] else 'Takanashi')
0