結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kyunakyuna
提出日時 2018-11-06 19:56:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 187 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-11-20 20:32:49
合計ジャッジ時間 58,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
16,384 KB
testcase_01 AC 55 ms
22,272 KB
testcase_02 AC 78 ms
22,144 KB
testcase_03 AC 73 ms
16,128 KB
testcase_04 AC 47 ms
22,016 KB
testcase_05 AC 87 ms
16,384 KB
testcase_06 AC 57 ms
22,144 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 96 ms
10,880 KB
testcase_13 AC 35 ms
10,752 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 72 ms
11,008 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2,950 ms
22,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, *A = map(int, open(0).read().split())
X = 0
dp = [0] * (1 << 15)
dp[0] = 1
for i in range(N):
    for j in range(1 << 15):
        if dp[j]:
            dp[A[i] ^ j] = 1
print(sum(dp))
0