結果

問題 No.946 箱箱箱
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-27 00:17:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 77,492 KB
最終ジャッジ日時 2024-10-27 00:17:16
合計ジャッジ時間 9,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,704 KB
testcase_01 AC 35 ms
53,580 KB
testcase_02 AC 37 ms
53,932 KB
testcase_03 AC 169 ms
77,084 KB
testcase_04 AC 185 ms
76,672 KB
testcase_05 AC 36 ms
52,428 KB
testcase_06 AC 163 ms
77,044 KB
testcase_07 AC 159 ms
76,884 KB
testcase_08 AC 164 ms
76,948 KB
testcase_09 AC 160 ms
76,656 KB
testcase_10 AC 158 ms
77,384 KB
testcase_11 AC 36 ms
53,028 KB
testcase_12 AC 164 ms
76,888 KB
testcase_13 AC 172 ms
76,940 KB
testcase_14 AC 157 ms
76,768 KB
testcase_15 AC 160 ms
77,200 KB
testcase_16 AC 161 ms
76,904 KB
testcase_17 AC 164 ms
77,088 KB
testcase_18 AC 156 ms
76,964 KB
testcase_19 AC 155 ms
76,964 KB
testcase_20 AC 45 ms
59,844 KB
testcase_21 AC 168 ms
76,852 KB
testcase_22 AC 153 ms
77,312 KB
testcase_23 AC 161 ms
77,056 KB
testcase_24 AC 152 ms
77,152 KB
testcase_25 AC 179 ms
76,932 KB
testcase_26 AC 161 ms
76,800 KB
testcase_27 AC 177 ms
77,492 KB
testcase_28 AC 158 ms
77,424 KB
testcase_29 AC 156 ms
76,740 KB
testcase_30 AC 161 ms
76,952 KB
testcase_31 AC 158 ms
77,200 KB
testcase_32 AC 162 ms
77,324 KB
testcase_33 AC 156 ms
76,916 KB
testcase_34 AC 174 ms
76,932 KB
testcase_35 AC 157 ms
77,196 KB
testcase_36 AC 160 ms
76,812 KB
testcase_37 AC 162 ms
76,896 KB
testcase_38 AC 164 ms
76,676 KB
testcase_39 AC 154 ms
77,132 KB
testcase_40 AC 148 ms
76,852 KB
testcase_41 AC 176 ms
76,984 KB
testcase_42 AC 149 ms
76,756 KB
testcase_43 AC 164 ms
77,008 KB
testcase_44 AC 158 ms
76,728 KB
testcase_45 AC 168 ms
76,736 KB
testcase_46 AC 161 ms
76,944 KB
testcase_47 AC 37 ms
51,824 KB
testcase_48 AC 36 ms
54,100 KB
testcase_49 AC 36 ms
52,264 KB
testcase_50 AC 35 ms
51,940 KB
testcase_51 AC 36 ms
52,864 KB
testcase_52 AC 38 ms
52,904 KB
testcase_53 AC 39 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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