結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,228 KB
testcase_01 AC 44 ms
59,840 KB
testcase_02 AC 43 ms
59,432 KB
testcase_03 AC 41 ms
60,348 KB
testcase_04 AC 40 ms
59,692 KB
testcase_05 AC 44 ms
59,388 KB
testcase_06 AC 42 ms
59,044 KB
testcase_07 AC 454 ms
61,404 KB
testcase_08 AC 457 ms
61,524 KB
testcase_09 AC 326 ms
61,708 KB
testcase_10 AC 384 ms
62,020 KB
testcase_11 AC 492 ms
62,084 KB
testcase_12 AC 43 ms
60,612 KB
testcase_13 AC 40 ms
58,312 KB
testcase_14 AC 260 ms
60,804 KB
testcase_15 AC 507 ms
63,300 KB
testcase_16 AC 41 ms
59,268 KB
testcase_17 AC 146 ms
61,260 KB
testcase_18 AC 445 ms
61,768 KB
testcase_19 AC 93 ms
61,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = 0

x = [0] * 2 ** 15

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