結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,220 KB
testcase_01 AC 36 ms
53,100 KB
testcase_02 AC 40 ms
59,176 KB
testcase_03 AC 34 ms
59,504 KB
testcase_04 AC 32 ms
51,696 KB
testcase_05 AC 36 ms
60,628 KB
testcase_06 AC 31 ms
52,044 KB
testcase_07 AC 2,243 ms
257,920 KB
testcase_08 AC 1,086 ms
82,348 KB
testcase_09 AC 767 ms
80,256 KB
testcase_10 AC 907 ms
81,364 KB
testcase_11 AC 1,173 ms
83,260 KB
testcase_12 AC 38 ms
64,248 KB
testcase_13 AC 32 ms
52,468 KB
testcase_14 AC 36 ms
60,228 KB
testcase_15 AC 1,192 ms
83,816 KB
testcase_16 AC 40 ms
57,600 KB
testcase_17 AC 303 ms
77,656 KB
testcase_18 AC 1,875 ms
258,092 KB
testcase_19 AC 173 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input()

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

print(len(s))
0