結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ysys
提出日時 2018-08-19 08:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 670 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 64,464 KB
最終ジャッジ日時 2024-07-01 03:50:29
合計ジャッジ時間 6,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,812 KB
testcase_01 AC 46 ms
60,124 KB
testcase_02 AC 47 ms
60,892 KB
testcase_03 AC 47 ms
60,020 KB
testcase_04 AC 45 ms
59,480 KB
testcase_05 AC 48 ms
61,108 KB
testcase_06 AC 45 ms
59,500 KB
testcase_07 AC 599 ms
62,936 KB
testcase_08 AC 601 ms
62,908 KB
testcase_09 AC 427 ms
62,916 KB
testcase_10 AC 501 ms
63,816 KB
testcase_11 AC 645 ms
64,464 KB
testcase_12 AC 46 ms
60,824 KB
testcase_13 AC 42 ms
59,196 KB
testcase_14 AC 670 ms
63,220 KB
testcase_15 AC 668 ms
63,608 KB
testcase_16 AC 46 ms
60,616 KB
testcase_17 AC 184 ms
61,932 KB
testcase_18 AC 584 ms
63,672 KB
testcase_19 AC 116 ms
61,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
dp = [0] * (1 << 15)
dp[0] = 1
for i in range(n):
    for j in range(1 << 15):
        dp[a[i] ^ j] |= dp[j]

num = 0
for j in range(1 << 15):
    if dp[j] == 1:
        num += 1

print(num)
0