結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー prd_xxxprd_xxx
提出日時 2020-02-14 22:44:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 710 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 96,532 KB
最終ジャッジ日時 2024-11-16 01:05:51
合計ジャッジ時間 8,043 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,784 KB
testcase_01 AC 43 ms
53,948 KB
testcase_02 AC 42 ms
54,860 KB
testcase_03 AC 42 ms
53,800 KB
testcase_04 AC 47 ms
61,036 KB
testcase_05 AC 43 ms
53,688 KB
testcase_06 AC 43 ms
54,396 KB
testcase_07 AC 42 ms
54,252 KB
testcase_08 AC 43 ms
54,792 KB
testcase_09 AC 43 ms
54,276 KB
testcase_10 AC 84 ms
83,816 KB
testcase_11 AC 90 ms
87,328 KB
testcase_12 TLE -
testcase_13 AC 84 ms
82,652 KB
testcase_14 AC 95 ms
84,368 KB
testcase_15 AC 78 ms
79,072 KB
testcase_16 AC 96 ms
83,916 KB
testcase_17 AC 73 ms
79,156 KB
testcase_18 TLE -
testcase_19 AC 1,308 ms
82,556 KB
testcase_20 AC 127 ms
96,532 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