結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー tpynerivertpyneriver
提出日時 2020-02-14 21:55:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-04-27 19:35:48
合計ジャッジ時間 2,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,948 KB
testcase_01 AC 38 ms
55,452 KB
testcase_02 AC 39 ms
55,120 KB
testcase_03 AC 36 ms
55,064 KB
testcase_04 AC 39 ms
59,584 KB
testcase_05 AC 37 ms
54,776 KB
testcase_06 AC 36 ms
55,084 KB
testcase_07 AC 43 ms
54,752 KB
testcase_08 AC 39 ms
54,468 KB
testcase_09 AC 36 ms
55,080 KB
testcase_10 AC 77 ms
83,040 KB
testcase_11 AC 78 ms
86,520 KB
testcase_12 AC 235 ms
87,220 KB
testcase_13 AC 79 ms
83,012 KB
testcase_14 AC 79 ms
83,692 KB
testcase_15 AC 66 ms
78,836 KB
testcase_16 AC 84 ms
82,576 KB
testcase_17 AC 69 ms
78,620 KB
testcase_18 AC 239 ms
87,848 KB
testcase_19 AC 191 ms
81,628 KB
testcase_20 AC 106 ms
92,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter
readline = sys.stdin.readline

def gcd(a,b):
    if b == 0:
        return a
    return gcd(b,a%b)
#約数列挙
def divi(n):
    res = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            res.append(i)
            if i != n // i:
                res.append(n//i)
    return res

N, M, K = map(int, readline().split())
op, *A = readline().strip().split()
A = [int(a) for a in A]
B = [int(readline()) for _ in range(N)]

if op == '+':
    C = Counter()
    for a in A:
        C[a%K] += 1
    
    res = 0
    for b in B:
        res += C[(-b)%K]
    print(res)
else:
    R = divi(K)
    R.sort()
    lr = len(R)
    Dr = Counter()
    table1 = [0]*lr
    table2 = [0]*lr
    for i in range(lr):
        Dr[R[i]] = i
    
    for a in A:
        table1[Dr[gcd(a, K)]] += 1
    
    for i in range(lr):
        k = R[i]
        v = table1[i]
        for j in range(i+1):
            if not k%R[j]:
                table2[j] += v
    ans = 0
    for b in B:
        ans += table2[Dr[K//gcd(b, K)]]
    print(ans)
0