結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー ttrttr
提出日時 2020-02-14 23:47:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 845 ms / 2,000 ms
コード長 1,031 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,212 KB
最終ジャッジ日時 2024-11-16 01:50:06
合計ジャッジ時間 5,781 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 42 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 183 ms
15,772 KB
testcase_11 AC 220 ms
17,312 KB
testcase_12 AC 845 ms
21,960 KB
testcase_13 AC 139 ms
15,768 KB
testcase_14 AC 412 ms
17,488 KB
testcase_15 AC 281 ms
14,688 KB
testcase_16 AC 293 ms
16,308 KB
testcase_17 AC 198 ms
13,636 KB
testcase_18 AC 816 ms
21,828 KB
testcase_19 AC 505 ms
15,780 KB
testcase_20 AC 488 ms
22,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,M,K = map(int, input().split())
B = [i for i in input().split()]
op = B.pop(0)
A = [int(input()) for _ in range(N)]
for i in range(M):
    B[i] = int(B[i])

def gcd(a, b):
    if a < b:
        a, b = b, a
    if a%b == 0:
        return b
    return gcd(b, a%b)

ans = 0
if op == "+":
    for i in range(N):
        A[i] %= K
    for j in range(M):
        B[j] %= K
    B.sort()
    for a in A:
        l = bisect.bisect_left(B, (K-a)%K)
        r = bisect.bisect_right(B, (K-a)%K)
        ans += r-l
    if K == 1:
        ans = N*M
else:
    dic = {}
    i = 1
    while i < K**0.5:
        if K%i == 0:
            dic[i] = 0
            dic[K//i] = 0
        i += 1
    if K%int(K**0.5) == 0:
        dic[int(K**0.5)] = 0
    for b in B:
        b = gcd(b, K)
        dic[b] += 1
    Key = sorted(dic)
    for i in range(len(Key)):
        for j in range(i+1, len(Key)):
            if Key[j]%Key[i] == 0:
                dic[Key[i]] += dic[Key[j]]
    for a in A:
        ans += dic[K//gcd(a, K)]

print(ans)
0