結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー mlihua09mlihua09
提出日時 2020-08-28 20:42:06
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 208 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 70,504 KB
最終ジャッジ日時 2024-11-13 23:43:39
合計ジャッジ時間 4,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,648 KB
testcase_01 AC 40 ms
59,456 KB
testcase_02 AC 42 ms
60,008 KB
testcase_03 AC 41 ms
59,876 KB
testcase_04 AC 40 ms
58,444 KB
testcase_05 AC 42 ms
59,452 KB
testcase_06 AC 40 ms
58,360 KB
testcase_07 RE -
testcase_08 AC 459 ms
62,056 KB
testcase_09 AC 325 ms
62,056 KB
testcase_10 AC 384 ms
61,204 KB
testcase_11 AC 492 ms
61,376 KB
testcase_12 RE -
testcase_13 AC 39 ms
57,788 KB
testcase_14 AC 260 ms
61,928 KB
testcase_15 AC 508 ms
61,872 KB
testcase_16 AC 43 ms
59,608 KB
testcase_17 AC 146 ms
60,520 KB
testcase_18 RE -
testcase_19 AC 94 ms
62,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = 0

x = [0] * (2 ** 14 + 1)

x[0] = 1

for a in map(int, input().split()):
    
    for i in range(2 ** 14):
        
        if x[i]:
            
            x[i ^ a] = 1

print(sum(x))
0