結果

問題 No.206 数の積集合を求めるクエリ
ユーザー mkawa2mkawa2
提出日時 2020-01-28 09:47:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 323 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 30,232 KB
最終ジャッジ日時 2024-09-15 06:28:18
合計ジャッジ時間 13,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 67 ms
11,136 KB
testcase_13 AC 57 ms
10,880 KB
testcase_14 AC 45 ms
10,880 KB
testcase_15 AC 45 ms
10,880 KB
testcase_16 AC 41 ms
10,880 KB
testcase_17 AC 594 ms
24,852 KB
testcase_18 AC 308 ms
17,660 KB
testcase_19 AC 527 ms
22,608 KB
testcase_20 AC 311 ms
20,396 KB
testcase_21 AC 426 ms
18,184 KB
testcase_22 AC 283 ms
20,440 KB
testcase_23 AC 540 ms
24,044 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