結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,168 KB
testcase_01 AC 39 ms
58,748 KB
testcase_02 AC 44 ms
60,080 KB
testcase_03 AC 44 ms
59,588 KB
testcase_04 AC 39 ms
58,560 KB
testcase_05 AC 43 ms
60,868 KB
testcase_06 AC 41 ms
58,848 KB
testcase_07 RE -
testcase_08 AC 456 ms
62,436 KB
testcase_09 AC 326 ms
62,216 KB
testcase_10 AC 383 ms
63,056 KB
testcase_11 AC 493 ms
61,752 KB
testcase_12 RE -
testcase_13 AC 38 ms
58,644 KB
testcase_14 AC 259 ms
60,932 KB
testcase_15 AC 509 ms
62,208 KB
testcase_16 AC 42 ms
59,284 KB
testcase_17 AC 146 ms
61,636 KB
testcase_18 RE -
testcase_19 AC 93 ms
60,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = 0

x = [0] * 2 ** 14

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