結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー 👑 rin204rin204
提出日時 2022-07-09 15:15:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 897 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 92,688 KB
最終ジャッジ日時 2024-06-09 21:39:09
合計ジャッジ時間 7,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,700 KB
testcase_01 AC 35 ms
53,532 KB
testcase_02 AC 35 ms
54,120 KB
testcase_03 AC 36 ms
52,872 KB
testcase_04 AC 36 ms
59,796 KB
testcase_05 AC 35 ms
54,536 KB
testcase_06 AC 33 ms
53,928 KB
testcase_07 AC 33 ms
53,700 KB
testcase_08 AC 34 ms
52,692 KB
testcase_09 AC 37 ms
53,524 KB
testcase_10 AC 93 ms
83,388 KB
testcase_11 AC 106 ms
86,892 KB
testcase_12 TLE -
testcase_13 AC 92 ms
83,652 KB
testcase_14 AC 99 ms
84,388 KB
testcase_15 AC 85 ms
79,504 KB
testcase_16 AC 96 ms
82,184 KB
testcase_17 AC 84 ms
79,144 KB
testcase_18 TLE -
testcase_19 AC 696 ms
82,720 KB
testcase_20 AC 130 ms
92,688 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)
        for d in div:
            if d > b:
                break
            elif g % d == 0:
                cnt[d] = cnt.get(d, 0) + 1
            else:
                pass
    ans = 0
    for a in A:
        g = gcd(a, k)
        ans += cnt.get(k // g, 0)
    print(ans)

    
0