結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー gorugo30gorugo30
提出日時 2021-03-16 23:23:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,890 ms / 5,000 ms
コード長 262 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-11-08 19:16:13
合計ジャッジ時間 14,413 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,392 KB
testcase_01 AC 43 ms
59,136 KB
testcase_02 AC 47 ms
60,544 KB
testcase_03 AC 44 ms
60,032 KB
testcase_04 AC 42 ms
59,128 KB
testcase_05 AC 48 ms
60,928 KB
testcase_06 AC 45 ms
59,648 KB
testcase_07 AC 1,890 ms
62,720 KB
testcase_08 AC 1,549 ms
63,744 KB
testcase_09 AC 1,076 ms
63,488 KB
testcase_10 AC 1,277 ms
64,000 KB
testcase_11 AC 1,682 ms
63,816 KB
testcase_12 AC 48 ms
60,288 KB
testcase_13 AC 40 ms
57,216 KB
testcase_14 AC 1,334 ms
62,976 KB
testcase_15 AC 1,729 ms
63,360 KB
testcase_16 AC 45 ms
60,032 KB
testcase_17 AC 439 ms
62,848 KB
testcase_18 AC 1,673 ms
63,104 KB
testcase_19 AC 243 ms
61,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dp = [False] * (2 ** 15)
A = list(map(int, input().split()))
dp[0] = True
dp[A[0]] = True
for i in range(1, N):
    for j in range(2 ** 15):
        dp[j ^ A[i]] |= dp[j]
ans = 0
for i in range(2 ** 15):
    if dp[i]:
        ans += 1
print(ans)
0