結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー c-yanc-yan
提出日時 2020-12-25 00:21:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,244 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 744 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 258,340 KB
最終ジャッジ日時 2024-09-21 17:11:22
合計ジャッジ時間 10,496 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 36 ms
59,008 KB
testcase_03 AC 36 ms
57,856 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 42 ms
60,928 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 2,244 ms
258,340 KB
testcase_08 AC 1,002 ms
81,792 KB
testcase_09 AC 742 ms
80,232 KB
testcase_10 AC 862 ms
81,024 KB
testcase_11 AC 1,101 ms
82,260 KB
testcase_12 AC 40 ms
63,680 KB
testcase_13 AC 33 ms
51,840 KB
testcase_14 AC 36 ms
58,112 KB
testcase_15 AC 1,138 ms
82,036 KB
testcase_16 AC 37 ms
57,728 KB
testcase_17 AC 313 ms
77,756 KB
testcase_18 AC 1,602 ms
258,288 KB
testcase_19 AC 176 ms
77,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, *A = map(int, open(0).read().split())

result = {0}
for a in set(A):
    for b in list(result):
        result.add(a ^ b)
print(len(result))
0