結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー maimai
提出日時 2017-05-24 23:54:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,707 ms / 5,000 ms
コード長 120 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 192,144 KB
最終ジャッジ日時 2024-06-30 01:16:17
合計ジャッジ時間 13,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 42 ms
58,624 KB
testcase_03 AC 41 ms
57,600 KB
testcase_04 AC 37 ms
51,200 KB
testcase_05 AC 42 ms
60,032 KB
testcase_06 AC 37 ms
51,452 KB
testcase_07 AC 2,707 ms
192,144 KB
testcase_08 AC 1,521 ms
135,032 KB
testcase_09 AC 1,048 ms
131,900 KB
testcase_10 AC 1,252 ms
132,896 KB
testcase_11 AC 1,607 ms
136,064 KB
testcase_12 AC 40 ms
63,220 KB
testcase_13 AC 34 ms
51,456 KB
testcase_14 AC 40 ms
61,184 KB
testcase_15 AC 1,671 ms
136,036 KB
testcase_16 AC 37 ms
58,040 KB
testcase_17 AC 435 ms
126,836 KB
testcase_18 AC 2,175 ms
188,948 KB
testcase_19 AC 246 ms
126,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()

s = set()
s.add(0)
for a in map(int,input().split()):
    for b in s.copy():
        s.add(a^b)

print(len(s))
0