結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー convexineqconvexineq
提出日時 2021-05-06 06:09:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 489 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 115,348 KB
最終ジャッジ日時 2024-09-13 23:27:58
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,948 KB
testcase_01 AC 43 ms
54,740 KB
testcase_02 AC 43 ms
55,364 KB
testcase_03 AC 43 ms
54,144 KB
testcase_04 AC 47 ms
61,188 KB
testcase_05 AC 43 ms
54,124 KB
testcase_06 AC 43 ms
55,704 KB
testcase_07 AC 43 ms
54,124 KB
testcase_08 AC 42 ms
55,576 KB
testcase_09 AC 43 ms
54,128 KB
testcase_10 AC 80 ms
86,668 KB
testcase_11 AC 97 ms
98,300 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

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)
d = Counter(gcd(i,k) for i in b)
ans = 0
for ai in a:
    for bi,v in d.items():
        if ai*bi%k==0:
            ans += v
print(ans)
0