結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー 👑 rin204rin204
提出日時 2022-07-06 08:06:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 179 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 93,676 KB
最終ジャッジ日時 2024-05-10 07:40:11
合計ジャッジ時間 6,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 105 ms
84,480 KB
testcase_09 AC 57 ms
65,408 KB
testcase_10 AC 92 ms
78,336 KB
testcase_11 AC 77 ms
73,088 KB
testcase_12 AC 122 ms
89,004 KB
testcase_13 AC 133 ms
90,880 KB
testcase_14 AC 90 ms
77,696 KB
testcase_15 AC 139 ms
92,664 KB
testcase_16 AC 119 ms
87,260 KB
testcase_17 AC 128 ms
90,752 KB
testcase_18 AC 38 ms
58,368 KB
testcase_19 AC 35 ms
52,352 KB
testcase_20 AC 55 ms
77,440 KB
testcase_21 AC 135 ms
92,844 KB
testcase_22 AC 140 ms
93,676 KB
testcase_23 AC 36 ms
52,096 KB
testcase_24 AC 35 ms
52,352 KB
testcase_25 AC 35 ms
52,224 KB
testcase_26 AC 37 ms
51,840 KB
testcase_27 AC 36 ms
52,096 KB
testcase_28 AC 98 ms
81,152 KB
testcase_29 AC 123 ms
90,752 KB
testcase_30 AC 111 ms
86,128 KB
testcase_31 AC 108 ms
82,896 KB
testcase_32 AC 122 ms
87,116 KB
testcase_33 AC 141 ms
93,116 KB
testcase_34 AC 134 ms
92,508 KB
testcase_35 AC 143 ms
93,100 KB
testcase_36 AC 145 ms
93,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
base = []
for a in A:
    for b in base:
        a = min(a, a ^ b)
    if a != 0:
        base.append(a)
print(1 << len(base))
0