結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー cielciel
提出日時 2015-04-17 18:45:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 5,000 ms
コード長 108 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 62,720 KB
最終ジャッジ日時 2024-06-29 01:46:54
合計ジャッジ時間 5,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,444 KB
testcase_01 AC 38 ms
59,356 KB
testcase_02 AC 39 ms
59,504 KB
testcase_03 AC 40 ms
59,492 KB
testcase_04 AC 39 ms
59,676 KB
testcase_05 AC 39 ms
60,852 KB
testcase_06 AC 38 ms
60,040 KB
testcase_07 AC 477 ms
62,120 KB
testcase_08 AC 484 ms
61,816 KB
testcase_09 AC 340 ms
61,084 KB
testcase_10 AC 404 ms
61,364 KB
testcase_11 AC 525 ms
62,400 KB
testcase_12 AC 41 ms
59,976 KB
testcase_13 AC 37 ms
58,908 KB
testcase_14 AC 433 ms
61,112 KB
testcase_15 AC 536 ms
62,180 KB
testcase_16 AC 43 ms
59,076 KB
testcase_17 AC 149 ms
60,712 KB
testcase_18 AC 470 ms
62,720 KB
testcase_19 AC 95 ms
60,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h=[1]+[0]*32768
input()
for e in map(int,input().split()):
 for i in range(32768):h[e^i]|=h[i]
print(sum(h))
0