結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー freecss00freecss00
提出日時 2020-02-14 23:30:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 784 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,360 KB
最終ジャッジ日時 2024-11-16 01:42:21
合計ジャッジ時間 5,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 145 ms
19,320 KB
testcase_11 AC 181 ms
20,380 KB
testcase_12 AC 773 ms
29,432 KB
testcase_13 AC 105 ms
17,732 KB
testcase_14 AC 269 ms
21,792 KB
testcase_15 AC 195 ms
15,976 KB
testcase_16 AC 220 ms
21,672 KB
testcase_17 AC 143 ms
15,548 KB
testcase_18 AC 784 ms
29,408 KB
testcase_19 AC 259 ms
18,064 KB
testcase_20 AC 348 ms
38,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import Counter

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:
    gcda_cnt = Counter([math.gcd(k,a) for a in A])
    gcdb_cnt = Counter([math.gcd(k,b) for b in B])
    ans = 0
    for ga, gacnt in gcda_cnt.items():
        for gb, gbcnt in gcdb_cnt.items():
            if (ga * gb) % k == 0:
                ans += gacnt * gbcnt
print(ans)
0