結果

問題 No.1296 OR or NOR
ユーザー googol_S0googol_S0
提出日時 2020-11-20 22:20:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 134,404 KB
最終ジャッジ日時 2024-07-23 13:17:33
合計ジャッジ時間 29,712 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1,143 ms
117,404 KB
testcase_05 WA -
testcase_06 AC 573 ms
134,404 KB
testcase_07 AC 565 ms
134,144 KB
testcase_08 AC 513 ms
133,776 KB
testcase_09 AC 646 ms
129,120 KB
testcase_10 AC 666 ms
129,384 KB
testcase_11 AC 659 ms
116,956 KB
testcase_12 AC 642 ms
115,604 KB
testcase_13 AC 647 ms
119,288 KB
testcase_14 AC 2,386 ms
129,824 KB
testcase_15 AC 1,380 ms
117,308 KB
testcase_16 AC 1,193 ms
117,144 KB
testcase_17 AC 569 ms
134,024 KB
testcase_18 AC 571 ms
134,396 KB
testcase_19 AC 586 ms
134,248 KB
testcase_20 AC 502 ms
111,280 KB
testcase_21 AC 504 ms
111,804 KB
testcase_22 AC 434 ms
112,532 KB
testcase_23 AC 446 ms
112,524 KB
testcase_24 AC 458 ms
111,432 KB
testcase_25 AC 458 ms
111,312 KB
testcase_26 AC 494 ms
111,616 KB
testcase_27 AC 511 ms
111,384 KB
testcase_28 AC 492 ms
111,776 KB
testcase_29 AC 474 ms
111,304 KB
testcase_30 AC 1,597 ms
117,264 KB
testcase_31 AC 1,581 ms
117,460 KB
testcase_32 AC 1,597 ms
117,272 KB
testcase_33 AC 782 ms
116,612 KB
testcase_34 AC 783 ms
116,632 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]=max(1,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])
  #print(Y,Z)
  if len(Y&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