結果

問題 No.1296 OR or NOR
ユーザー googol_S0googol_S0
提出日時 2020-11-20 22:29:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,364 ms / 3,000 ms
コード長 630 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 134,256 KB
最終ジャッジ日時 2024-07-23 13:23:07
合計ジャッジ時間 29,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
52,472 KB
testcase_02 AC 618 ms
117,260 KB
testcase_03 AC 628 ms
123,400 KB
testcase_04 AC 1,140 ms
117,128 KB
testcase_05 AC 976 ms
117,516 KB
testcase_06 AC 576 ms
134,256 KB
testcase_07 AC 566 ms
134,252 KB
testcase_08 AC 513 ms
133,560 KB
testcase_09 AC 648 ms
129,348 KB
testcase_10 AC 666 ms
129,008 KB
testcase_11 AC 654 ms
116,764 KB
testcase_12 AC 629 ms
115,996 KB
testcase_13 AC 644 ms
118,828 KB
testcase_14 AC 2,364 ms
129,720 KB
testcase_15 AC 1,353 ms
117,656 KB
testcase_16 AC 1,162 ms
117,264 KB
testcase_17 AC 594 ms
133,952 KB
testcase_18 AC 568 ms
134,076 KB
testcase_19 AC 586 ms
134,092 KB
testcase_20 AC 502 ms
111,312 KB
testcase_21 AC 509 ms
111,776 KB
testcase_22 AC 429 ms
112,576 KB
testcase_23 AC 434 ms
112,372 KB
testcase_24 AC 448 ms
111,284 KB
testcase_25 AC 454 ms
111,084 KB
testcase_26 AC 488 ms
111,544 KB
testcase_27 AC 502 ms
111,160 KB
testcase_28 AC 485 ms
111,808 KB
testcase_29 AC 465 ms
110,968 KB
testcase_30 AC 1,570 ms
117,184 KB
testcase_31 AC 1,563 ms
117,260 KB
testcase_32 AC 1,568 ms
117,132 KB
testcase_33 AC 771 ms
116,192 KB
testcase_34 AC 763 ms
116,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
Q=int(input())
B=list(map(int,input().split()))
X=[-1]*60
for i in range(60):
  for j in range(N-1,-1,-1):
    if A[j]&(1<<i):
      X[i]=j
      break
for i in range(Q):
  Y,Z=set(),set()
  for j in range(60):
    if B[i]&(1<<j):
      Y.add(X[j])
    else:
      Z.add(X[j])
  if len(Y&Z):
    print(-1)
  elif ((0 in Y)and(-1 in Y))or((0 in Z)and(-1 in Z)):
    print(-1)
  else:
    V=sorted(Y|Z,reverse=True)
    P=0
    for j in range(len(V)):
      if V[j] in Y:
        if (P&1)^(V[j]==-1):
          P+=1
      else:
        if (P&1)^(V[j]!=-1):
          P+=1
    print(P)
0