結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-05-23 23:46:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 928 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-09-20 13:25:59
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,240 KB
testcase_01 AC 39 ms
58,296 KB
testcase_02 AC 44 ms
58,496 KB
testcase_03 AC 44 ms
59,136 KB
testcase_04 AC 43 ms
58,880 KB
testcase_05 AC 45 ms
58,880 KB
testcase_06 AC 40 ms
57,984 KB
testcase_07 AC 928 ms
62,464 KB
testcase_08 AC 656 ms
62,208 KB
testcase_09 AC 455 ms
61,440 KB
testcase_10 AC 544 ms
61,568 KB
testcase_11 AC 708 ms
62,592 KB
testcase_12 AC 43 ms
59,008 KB
testcase_13 AC 37 ms
58,240 KB
testcase_14 AC 307 ms
61,952 KB
testcase_15 AC 745 ms
62,456 KB
testcase_16 AC 42 ms
59,136 KB
testcase_17 AC 196 ms
61,312 KB
testcase_18 AC 801 ms
62,848 KB
testcase_19 AC 131 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ns=list(map(int,input().split()))
dp= [0]*((2<<14)+1)
dp[0]=1

for i in range(n):
    for j in range((2<<14)+1):
        if dp[j] == 0:
            continue
        dp[j ^ ns[i]] = 1
        
print(sum(dp))
0