結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー dangodango
提出日時 2023-06-15 20:53:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 592 ms / 5,000 ms
コード長 121 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 62,776 KB
最終ジャッジ日時 2024-06-23 18:55:53
合計ジャッジ時間 6,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,448 KB
testcase_01 AC 42 ms
59,672 KB
testcase_02 AC 42 ms
59,152 KB
testcase_03 AC 42 ms
61,004 KB
testcase_04 AC 41 ms
60,000 KB
testcase_05 AC 42 ms
60,992 KB
testcase_06 AC 42 ms
59,176 KB
testcase_07 AC 539 ms
61,464 KB
testcase_08 AC 540 ms
61,704 KB
testcase_09 AC 384 ms
61,332 KB
testcase_10 AC 448 ms
62,776 KB
testcase_11 AC 578 ms
61,904 KB
testcase_12 AC 44 ms
59,280 KB
testcase_13 AC 41 ms
58,692 KB
testcase_14 AC 470 ms
61,148 KB
testcase_15 AC 592 ms
62,048 KB
testcase_16 AC 43 ms
59,108 KB
testcase_17 AC 166 ms
61,784 KB
testcase_18 AC 518 ms
61,544 KB
testcase_19 AC 104 ms
61,616 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