結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー 👑 hahhohahho
提出日時 2021-02-28 03:33:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 124,432 KB
最終ジャッジ日時 2024-10-02 18:09:39
合計ジャッジ時間 3,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,016 KB
testcase_01 AC 42 ms
54,144 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 AC 45 ms
54,784 KB
testcase_04 AC 44 ms
54,784 KB
testcase_05 AC 45 ms
54,144 KB
testcase_06 AC 43 ms
54,272 KB
testcase_07 AC 45 ms
54,400 KB
testcase_08 AC 43 ms
54,656 KB
testcase_09 AC 42 ms
54,272 KB
testcase_10 AC 125 ms
88,860 KB
testcase_11 AC 129 ms
91,496 KB
testcase_12 AC 244 ms
92,800 KB
testcase_13 AC 105 ms
87,296 KB
testcase_14 AC 134 ms
88,448 KB
testcase_15 AC 104 ms
80,588 KB
testcase_16 AC 150 ms
94,204 KB
testcase_17 AC 100 ms
80,524 KB
testcase_18 AC 244 ms
92,800 KB
testcase_19 AC 139 ms
86,132 KB
testcase_20 AC 218 ms
124,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import gcd
from itertools import product
def solve_add(a,b,k):
    cnt_a = defaultdict(int)
    cnt_b = defaultdict(int)
    for v in a:
        cnt_a[v%k] += 1
    for v in b:
        cnt_b[v%k] += 1
    return sum(cnt_a[i]*cnt_b[-i%k] for i in cnt_a.keys())
def solve_mul(a,b,k):
    cnt_a = defaultdict(int)
    cnt_b = defaultdict(int)
    for v in a:
        cnt_a[gcd(k,v)] += 1
    for v in b:
        cnt_b[gcd(k,v)] += 1
    res = 0
    for (a,ca),(b,cb) in product(cnt_a.items(),cnt_b.items()):
        if a*b%k == 0:
            res += ca*cb
    return res
n,m,k = map(int,input().split())
op, *b = input().split()
b = list(map(int,b))
a = [int(input()) for _ in range(n)]
if op == '+':
    print(solve_add(a,b,k))
else:
    print(solve_mul(a,b,k))
0