結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー alexara1123alexara1123
提出日時 2019-07-10 15:41:51
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 309 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 81,576 KB
実行使用メモリ 717,240 KB
最終ジャッジ日時 2024-10-15 15:08:31
合計ジャッジ時間 14,424 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,648 KB
testcase_01 AC 47 ms
59,904 KB
testcase_02 AC 52 ms
61,440 KB
testcase_03 AC 49 ms
61,184 KB
testcase_04 AC 48 ms
59,860 KB
testcase_05 AC 51 ms
61,568 KB
testcase_06 AC 48 ms
60,672 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 1,190 ms
466,560 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 RE -
testcase_13 AC 43 ms
58,752 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 53 ms
61,184 KB
testcase_17 AC 464 ms
206,464 KB
testcase_18 MLE -
testcase_19 AC 267 ms
138,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

dp = [ [0]*16385 for i in range(N+1) ] 
dp[0][0] = 1
for i in range(N):
    for j in range(16385):
        if dp[i][j] == 1:
            dp[i+1][j^A[i]] = 1
        dp[i+1][j] |= dp[i][j]

ans = 1
for i in range(1,16385):
    ans += dp[N][i]
print(ans)



0