結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー prd_xxxprd_xxx
提出日時 2020-02-14 22:54:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 868 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 47,688 KB
最終ジャッジ日時 2024-11-16 01:17:21
合計ジャッジ時間 11,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,572 KB
testcase_01 AC 31 ms
36,360 KB
testcase_02 AC 31 ms
17,828 KB
testcase_03 AC 32 ms
36,612 KB
testcase_04 AC 32 ms
17,572 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 131 ms
17,128 KB
testcase_11 AC 173 ms
19,680 KB
testcase_12 TLE -
testcase_13 AC 123 ms
16,752 KB
testcase_14 AC 167 ms
19,088 KB
testcase_15 AC 113 ms
14,872 KB
testcase_16 AC 161 ms
18,384 KB
testcase_17 AC 93 ms
14,080 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 262 ms
47,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,M,K = map(int,input().split())
op,*B = input().split()
A = [int(input()) for i in range(N)]
B = [int(b) for b in B]

from collections import Counter
ans = 0
if op=='+':
    c = Counter()
    for a in A:
        c[a%K] += 1
    for b in B:
        ans += c[(K-b%K)%K]
else:
    ds = set()
    m = 1
    while m*m <= K:
        if K%m==0:
            ds.add(m)
            ds.add(K//m)
        m += 1
    ds = sorted(list(ds), reverse=True)
    ca = Counter()
    for a in A:
        for d in ds:
            if a%d==0:
                ca[d] += 1
                break
    cb = Counter()
    for b in B:
        for d in ds:
            if b%d==0:
                cb[d] += 1
                break
    for ka,va in ca.items():
        for kb,vb in cb.items():
            if (ka*kb)%K == 0:
                ans += va*vb

print(ans)
0