結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー 👑 rin204rin204
提出日時 2022-07-09 15:17:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 965 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 92,812 KB
最終ジャッジ日時 2024-06-09 21:40:24
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,280 KB
testcase_01 AC 33 ms
53,588 KB
testcase_02 AC 33 ms
54,832 KB
testcase_03 AC 33 ms
53,944 KB
testcase_04 AC 35 ms
59,032 KB
testcase_05 AC 32 ms
53,472 KB
testcase_06 AC 33 ms
53,196 KB
testcase_07 AC 32 ms
53,868 KB
testcase_08 AC 35 ms
53,364 KB
testcase_09 AC 34 ms
53,152 KB
testcase_10 AC 87 ms
83,344 KB
testcase_11 AC 105 ms
87,156 KB
testcase_12 AC 171 ms
87,780 KB
testcase_13 AC 85 ms
83,704 KB
testcase_14 AC 100 ms
84,228 KB
testcase_15 AC 86 ms
79,304 KB
testcase_16 AC 98 ms
82,568 KB
testcase_17 AC 78 ms
79,132 KB
testcase_18 AC 176 ms
87,728 KB
testcase_19 AC 140 ms
82,856 KB
testcase_20 AC 130 ms
92,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

n, m, k = map(int, input().split())
op, *B = input().split()
B = [int(b) for b in B]
A = [int(input()) for _ in range(n)]
if op == "+":
    cnt = {}
    for b in B:
        cnt[b % k] = cnt.get(b % k, 0) + 1
    ans = 0
    for a in A:
        ans += cnt.get(-a % k, 0)
    print(ans)
else:
    div = []
    for i in range(1, int(k ** 0.5 + 1)):
        if k % i == 0:
            div.append(i)
            if i * i != k:
                div.append(k // i)
            else:
                pass
        else:
            pass
    cnt = {}
    div.sort()
    for b in B:
        g = gcd(b, k)
        cnt[g] = cnt.get(g, 0) + 1
    for d in div:
        if d not in cnt:
            cnt[d] = 0
        for d2 in div[::-1]:
            if d2 == d:
                break
            if d2 % d == 0:
                cnt[d] += cnt.get(d2, 0)
    ans = 0
    for a in A:
        g = gcd(a, k)
        ans += cnt.get(k // g, 0)
    print(ans)

    
0