結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tnodinotnodino
提出日時 2022-07-07 17:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,809 ms / 5,000 ms
コード長 251 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 247,296 KB
最終ジャッジ日時 2024-06-06 23:57:31
合計ジャッジ時間 12,285 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,136 KB
testcase_01 AC 45 ms
59,776 KB
testcase_02 AC 48 ms
62,720 KB
testcase_03 AC 47 ms
61,696 KB
testcase_04 AC 44 ms
59,520 KB
testcase_05 AC 49 ms
62,592 KB
testcase_06 AC 47 ms
60,032 KB
testcase_07 AC 1,809 ms
246,912 KB
testcase_08 AC 1,218 ms
246,912 KB
testcase_09 AC 891 ms
246,784 KB
testcase_10 AC 1,072 ms
247,040 KB
testcase_11 AC 1,320 ms
247,168 KB
testcase_12 AC 51 ms
62,976 KB
testcase_13 AC 45 ms
57,856 KB
testcase_14 AC 633 ms
247,296 KB
testcase_15 AC 1,364 ms
247,168 KB
testcase_16 AC 48 ms
61,824 KB
testcase_17 AC 429 ms
246,144 KB
testcase_18 AC 1,491 ms
247,040 KB
testcase_19 AC 274 ms
199,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 2**15
N = int(input())
A = list(map(int,input().split()))
DP = [0] * (M+1)
DP[0] = 1
for i in range(N):
    DP2 = [0] * (M+1)
    for j in range(M+1):
        if DP[j]:
            DP2[j] = 1
            DP2[j^A[i]] = 1
    DP = DP2
print(sum(DP))
0