結果

問題 No.206 数の積集合を求めるクエリ
ユーザー mkawa2mkawa2
提出日時 2020-01-28 09:47:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 323 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 129,468 KB
最終ジャッジ日時 2024-09-15 06:28:42
合計ジャッジ時間 17,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 43 ms
51,712 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 49 ms
60,928 KB
testcase_07 AC 49 ms
60,672 KB
testcase_08 AC 50 ms
61,312 KB
testcase_09 AC 50 ms
61,184 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 43 ms
52,352 KB
testcase_12 AC 140 ms
75,904 KB
testcase_13 AC 119 ms
76,032 KB
testcase_14 AC 91 ms
76,544 KB
testcase_15 AC 103 ms
76,160 KB
testcase_16 AC 91 ms
75,776 KB
testcase_17 AC 1,493 ms
102,144 KB
testcase_18 AC 802 ms
86,656 KB
testcase_19 AC 1,350 ms
98,816 KB
testcase_20 AC 766 ms
88,320 KB
testcase_21 AC 972 ms
90,368 KB
testcase_22 AC 660 ms
90,624 KB
testcase_23 AC 1,377 ms
100,480 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def tobit(aa):
    res = 0
    for a in aa: res |= 1 << a
    return res

def popcnt(a): return bin(a).count("1")

l, m, n = map(int, input().split())
aa = list(map(int, input().split()))
bb = list(map(int, input().split()))
a = tobit(aa)
b = tobit(bb)
q = int(input())
for _ in range(q):
    print(popcnt(a & b))
    b<<=1
0