結果

問題 No.1296 OR or NOR
ユーザー Kiri8128Kiri8128
提出日時 2020-06-25 23:50:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 3,000 ms
コード長 762 bytes
コンパイル時間 738 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 122,136 KB
最終ジャッジ日時 2024-06-11 20:56:40
合計ジャッジ時間 12,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,592 KB
testcase_01 AC 33 ms
53,384 KB
testcase_02 AC 240 ms
104,808 KB
testcase_03 AC 232 ms
114,048 KB
testcase_04 AC 340 ms
105,164 KB
testcase_05 AC 324 ms
105,200 KB
testcase_06 AC 275 ms
122,056 KB
testcase_07 AC 248 ms
120,908 KB
testcase_08 AC 237 ms
121,072 KB
testcase_09 AC 246 ms
113,196 KB
testcase_10 AC 256 ms
112,640 KB
testcase_11 AC 220 ms
104,892 KB
testcase_12 AC 215 ms
103,384 KB
testcase_13 AC 236 ms
112,380 KB
testcase_14 AC 536 ms
112,880 KB
testcase_15 AC 391 ms
105,160 KB
testcase_16 AC 302 ms
104,660 KB
testcase_17 AC 237 ms
120,348 KB
testcase_18 AC 230 ms
122,136 KB
testcase_19 AC 245 ms
121,720 KB
testcase_20 AC 195 ms
99,512 KB
testcase_21 AC 215 ms
99,612 KB
testcase_22 AC 114 ms
99,752 KB
testcase_23 AC 123 ms
99,632 KB
testcase_24 AC 166 ms
100,080 KB
testcase_25 AC 170 ms
99,496 KB
testcase_26 AC 199 ms
99,588 KB
testcase_27 AC 214 ms
99,596 KB
testcase_28 AC 198 ms
99,872 KB
testcase_29 AC 181 ms
99,520 KB
testcase_30 AC 483 ms
105,028 KB
testcase_31 AC 474 ms
105,220 KB
testcase_32 AC 489 ms
105,024 KB
testcase_33 AC 398 ms
114,700 KB
testcase_34 AC 370 ms
114,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(n, adj=0):
    ret = 0
    f = adj
    for e in E:
        if n ^ e < n:
            n ^= e
            ret += f
            f = 0
        else:
            ret += f ^ 1
            f = 1
    ret += f
    return 100 if n else ret

N = int(input())
A = [int(a) for a in input().split()]

m = (1 << 60) - 1
s = m
E = []
for a in A[1:][::-1]:
    t = s & a
    for e in E:
        t = min(t, t ^ e)
    if t: E.append(t)
    s &= a ^ m

s &= A[0]
Q = int(input())
L = [int(a) for a in input().split()]
for b in L:
    t = min(calc(b ^ s), calc(b ^ s ^ m, 1))
    print(-1 if t > 99 else t)

assert 1 <= N <= 200000
assert len(A) == N
for a in A:
    assert 0 <= a < 1 << 60
assert 1 <= Q <= 200000
assert len(L) == Q
for b in L:
    assert 0 <= b < 1 << 60
0