結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー freecss00freecss00
提出日時 2020-02-14 23:22:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 60,144 KB
最終ジャッジ日時 2024-11-16 01:39:40
合計ジャッジ時間 18,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,384 KB
testcase_01 AC 31 ms
34,000 KB
testcase_02 WA -
testcase_03 AC 30 ms
50,972 KB
testcase_04 AC 40 ms
16,256 KB
testcase_05 AC 31 ms
32,452 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 31 ms
16,384 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 155 ms
19,236 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 283 ms
22,368 KB
testcase_15 AC 215 ms
15,872 KB
testcase_16 AC 238 ms
21,708 KB
testcase_17 AC 149 ms
15,596 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 377 ms
60,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import Counter

def getprimes(x):
    res = []
    a = 2
    while x > a*a:
        while x % a == 0:
            res.append(a)
            x //= a
        a += 1
    if x != 1:
        res.append(x)
    return res

def getfactors(x):
    res = []
    for i in range(1, int(x**0.5)+1):
        if x % i == 0:
            res.append(i)
            if i != x // i:
                res.append(x//i)
    res.sort()
    return res

n, m, k = map(int, input().split())
line = input().split()
op = line[0]
B = list(map(int, line[1:]))
A = [int(input()) for _ in range(n)]

if op == '+':
    mod = [a % k for a in A]
    modcnt = Counter(mod)
    ans = sum([modcnt[(k - (b%k)) % k] for b in B])
else:
    factors = []
    for a in A:
        factors += getfactors(a)
    factorcnt = Counter(factors)
    ans = 0
    for a in A:
        l = k // math.gcd(a, k)
        ans += factorcnt[l]
print(ans)
0