結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー convexineqconvexineq
提出日時 2021-05-06 06:12:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 108,316 KB
最終ジャッジ日時 2024-09-13 23:29:50
合計ジャッジ時間 3,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 44 ms
54,272 KB
testcase_03 AC 44 ms
54,272 KB
testcase_04 AC 48 ms
60,544 KB
testcase_05 AC 42 ms
54,272 KB
testcase_06 AC 43 ms
54,016 KB
testcase_07 AC 43 ms
53,888 KB
testcase_08 AC 42 ms
54,144 KB
testcase_09 AC 44 ms
54,016 KB
testcase_10 AC 81 ms
85,888 KB
testcase_11 AC 107 ms
97,920 KB
testcase_12 AC 216 ms
108,316 KB
testcase_13 AC 84 ms
82,688 KB
testcase_14 AC 103 ms
100,480 KB
testcase_15 AC 74 ms
83,200 KB
testcase_16 AC 99 ms
100,480 KB
testcase_17 AC 67 ms
77,440 KB
testcase_18 AC 203 ms
108,160 KB
testcase_19 AC 126 ms
94,208 KB
testcase_20 AC 137 ms
108,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k,op,*ab = open(0).read().split()
m,k = int(m),int(k)
from collections import Counter
from math import gcd
a = map(int,ab[:m])
b = [int(i)%k for i in ab[m:]]
if op == "+":
    d = Counter(b)
    print(sum(d[-ai%k] for ai in a))
    exit()
r = []
for i in range(1,k+1):
    if i*i > k: break
    if k%i==0: r.append(i)
    if i*i != k: r.append(k//i)
da = Counter(gcd(i,k) for i in a)
db = Counter(gcd(i,k) for i in b)
ans = 0
for ai,w in da.items():
    for bi,v in db.items():
        if ai*bi%k==0:
            ans += w*v
print(ans)
0