結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yansi819yansi819
提出日時 2024-05-24 11:10:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 69,728 KB
最終ジャッジ日時 2024-05-24 11:10:56
合計ジャッジ時間 6,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,492 KB
testcase_01 AC 38 ms
60,060 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
59,876 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 AC 707 ms
63,888 KB
testcase_09 AC 486 ms
62,476 KB
testcase_10 AC 608 ms
64,352 KB
testcase_11 AC 747 ms
62,848 KB
testcase_12 RE -
testcase_13 AC 39 ms
58,996 KB
testcase_14 AC 784 ms
63,336 KB
testcase_15 AC 307 ms
64,024 KB
testcase_16 WA -
testcase_17 AC 206 ms
62,356 KB
testcase_18 RE -
testcase_19 AC 120 ms
61,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
dp = [False] * 16385
dp[0] = True
for i in range(16385):
    for j in range(N - 1, -1, -1):
        if dp[i]:
            dp[i ^ A[j]] = True
print(dp.count(True))
0