結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー 👑 hahhohahho
提出日時 2021-02-28 03:31:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 758 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 849,404 KB
最終ジャッジ日時 2024-10-02 18:09:10
合計ジャッジ時間 4,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,000 KB
testcase_01 AC 42 ms
56,060 KB
testcase_02 AC 43 ms
55,788 KB
testcase_03 AC 47 ms
61,848 KB
testcase_04 AC 43 ms
54,824 KB
testcase_05 AC 48 ms
60,820 KB
testcase_06 AC 43 ms
55,200 KB
testcase_07 AC 42 ms
55,620 KB
testcase_08 AC 48 ms
61,356 KB
testcase_09 AC 53 ms
66,956 KB
testcase_10 AC 259 ms
215,968 KB
testcase_11 AC 128 ms
91,312 KB
testcase_12 AC 215 ms
92,744 KB
testcase_13 AC 102 ms
87,440 KB
testcase_14 AC 124 ms
88,696 KB
testcase_15 AC 102 ms
80,428 KB
testcase_16 MLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import gcd
def solve_add(a,b,k):
    cnt_a = [0]*k
    cnt_b = [0]*k
    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] for i in range(k))
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 in cnt_a.items():
        for b,cb in 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