結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー prd_xxxprd_xxx
提出日時 2020-02-14 22:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,878 ms / 2,000 ms
コード長 710 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 96,536 KB
最終ジャッジ日時 2024-04-27 19:55:47
合計ジャッジ時間 6,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,784 KB
testcase_01 AC 36 ms
54,608 KB
testcase_02 AC 35 ms
54,024 KB
testcase_03 AC 33 ms
54,752 KB
testcase_04 AC 37 ms
60,688 KB
testcase_05 AC 33 ms
53,564 KB
testcase_06 AC 34 ms
54,540 KB
testcase_07 AC 34 ms
55,700 KB
testcase_08 AC 34 ms
54,112 KB
testcase_09 AC 33 ms
53,564 KB
testcase_10 AC 77 ms
84,032 KB
testcase_11 AC 79 ms
87,840 KB
testcase_12 AC 1,738 ms
89,600 KB
testcase_13 AC 72 ms
82,984 KB
testcase_14 AC 80 ms
84,576 KB
testcase_15 AC 65 ms
79,196 KB
testcase_16 AC 78 ms
83,996 KB
testcase_17 AC 63 ms
78,868 KB
testcase_18 AC 1,878 ms
89,420 KB
testcase_19 AC 1,119 ms
82,652 KB
testcase_20 AC 112 ms
96,536 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)
    c = Counter()
    for a in A:
        for d in ds:
            if a%d==0:
                c[d] += 1
                break
    for b in B:
        for d in ds:
            if (b*d)%K == 0:
                ans += c[d]

print(ans)
0