結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-02-28 04:14:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 877 bytes
コンパイル時間 1,340 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 102,384 KB
最終ジャッジ日時 2024-11-16 03:37:31
合計ジャッジ時間 3,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,120 KB
testcase_01 AC 42 ms
55,252 KB
testcase_02 AC 43 ms
55,060 KB
testcase_03 AC 43 ms
54,256 KB
testcase_04 AC 43 ms
54,208 KB
testcase_05 AC 44 ms
54,604 KB
testcase_06 AC 44 ms
55,820 KB
testcase_07 AC 44 ms
55,600 KB
testcase_08 AC 43 ms
55,432 KB
testcase_09 AC 43 ms
54,700 KB
testcase_10 AC 97 ms
91,256 KB
testcase_11 AC 107 ms
93,368 KB
testcase_12 AC 306 ms
94,972 KB
testcase_13 AC 89 ms
88,164 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 110 ms
88,360 KB
testcase_17 WA -
testcase_18 AC 304 ms
95,148 KB
testcase_19 AC 140 ms
86,260 KB
testcase_20 AC 160 ms
102,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import defaultdict
from math import gcd
N, M, K = map(int, input().split())
R = 0

bs = []
fs = []
for i in range(N+1):
    if i == 0:
        X = input().split()
        e = X[0] == '+'
        if e:
            d = defaultdict(int)
            for x in X[1:]:
                d[K-int(x)%K] += 1
        else:
            bs = list(map(int, X[1:]))
            d = defaultdict(int)
            for b in bs:
                b = gcd(b, K)
                d[b] += 1
        continue
    x = int(input())
    if e:
        R += d[x%K]
    else:
        fs.append(x)
if e:
    print(R)
else:
    d2 = defaultdict(int)
    for b in fs:
        b = gcd(b, K)
        d2[b] += 1
    for c in d:
        for e in d2:
#            print(c, e, d[c])
            if gcd(c*e, K) % K == 0:
                R += d[c]*d2[e]
    print(R)
0