結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー chinchillachinchilla
提出日時 2020-02-16 13:50:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,656 KB
最終ジャッジ日時 2024-11-16 02:28:37
合計ジャッジ時間 4,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 158 ms
19,148 KB
testcase_11 AC 167 ms
16,580 KB
testcase_12 AC 516 ms
18,880 KB
testcase_13 AC 118 ms
15,304 KB
testcase_14 AC 203 ms
15,340 KB
testcase_15 AC 128 ms
12,404 KB
testcase_16 AC 189 ms
19,340 KB
testcase_17 AC 107 ms
12,392 KB
testcase_18 AC 530 ms
18,764 KB
testcase_19 AC 192 ms
14,604 KB
testcase_20 AC 336 ms
39,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
from collections import Counter
n, m, k = map(int, input().split())
op, *B = input().split()
ca = Counter({"+":int(a)%k, "*":math.gcd(int(a), k)}[op] for a in sys.stdin)
cb = Counter({"+":-int(b)%k, "*":math.gcd(int(b), k)}[op] for b in B)
if op=="+":
	print(sum(ca[i]*cb[i] for i in ca if i in cb))
else:
	print(sum(ca[i]*cb[j] for i in ca for j in cb if i*j%k==0))
0