結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー H20H20
提出日時 2021-07-15 11:46:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,372 KB
最終ジャッジ日時 2024-07-04 12:02:31
合計ジャッジ時間 3,475 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,888 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 43 ms
54,528 KB
testcase_04 AC 43 ms
54,528 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 45 ms
54,400 KB
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 44 ms
54,528 KB
testcase_09 AC 43 ms
54,016 KB
testcase_10 AC 112 ms
86,656 KB
testcase_11 AC 130 ms
91,648 KB
testcase_12 AC 190 ms
92,672 KB
testcase_13 AC 107 ms
86,400 KB
testcase_14 AC 129 ms
87,808 KB
testcase_15 AC 107 ms
80,580 KB
testcase_16 AC 131 ms
88,128 KB
testcase_17 AC 97 ms
80,000 KB
testcase_18 AC 192 ms
93,056 KB
testcase_19 AC 132 ms
85,248 KB
testcase_20 AC 188 ms
109,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import math

N,M,K = map(int,input().split())
B = list(input().split())
OP = B[0]
B = list(map(int, B[1:]))
A = []
for _ in range(N):
    A.append(int(input()))

ANS = 0
if OP=='+':
    for i in range(N):
        A[i] = A[i]%K
    for i in range(M):
        B[i] = B[i]%K
    CA = collections.Counter(A)
    CB = collections.Counter(B)
    for k,v in CA.items():
        ANS += CB[(K-k)%K]*v
else:
    for i in range(N):
        A[i] = math.gcd(A[i],K)
    for i in range(M):
        B[i] = math.gcd(B[i],K)
    CA = collections.Counter(A)
    CB = collections.Counter(B)
    for k1,v1 in CA.items():
        for k2,v2 in CB.items():
            if k1*k2%K==0:
                ANS += v1*v2

print(ANS)
0