結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-05-23 23:23:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 311 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 728,352 KB
最終ジャッジ日時 2024-09-20 13:23:48
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,264 KB
testcase_01 AC 41 ms
11,648 KB
testcase_02 AC 65 ms
13,696 KB
testcase_03 AC 57 ms
12,672 KB
testcase_04 AC 38 ms
11,392 KB
testcase_05 AC 72 ms
14,080 KB
testcase_06 AC 43 ms
12,032 KB
testcase_07 MLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ns=list(map(int,input().split()))
ans={0}
dp=[[0]*(10**4*2) for i in range(n+1)]
dp[0][0]=1

for i in range(n):
    for j in range(10**4*2 - 10):
        if dp[i][j] == 0:
            continue
        dp[i+1][j ^ ns[i]] = 1
        ans.add(j^ns[i])
        dp[i+1][j] = 1
        
print(len(ans))
0