結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー convexineqconvexineq
提出日時 2021-05-06 06:29:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 116,200 KB
最終ジャッジ日時 2024-09-13 23:46:29
合計ジャッジ時間 2,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,220 KB
testcase_01 AC 42 ms
55,380 KB
testcase_02 AC 42 ms
54,128 KB
testcase_03 AC 42 ms
55,928 KB
testcase_04 AC 42 ms
54,344 KB
testcase_05 AC 43 ms
54,840 KB
testcase_06 AC 42 ms
55,048 KB
testcase_07 AC 42 ms
54,472 KB
testcase_08 AC 42 ms
55,040 KB
testcase_09 AC 42 ms
54,712 KB
testcase_10 AC 100 ms
96,912 KB
testcase_11 AC 104 ms
97,252 KB
testcase_12 AC 202 ms
106,648 KB
testcase_13 AC 75 ms
80,496 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 111 ms
100,460 KB
testcase_17 WA -
testcase_18 AC 202 ms
107,400 KB
testcase_19 AC 120 ms
92,864 KB
testcase_20 AC 154 ms
116,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter as C
from math import gcd
n,m,k,op,*ab = open(0).read().split()
m,k = int(m),int(k)
f = lambda x: int(x)%k if op=="+" else gcd(k,int(x))
a = C(map(f,ab[:m]))
b = C(map(f,ab[m:]))
print(sum(b[-i%k] for i,v in a.items()) if op == "+" else sum(v*w*(i*j%k==0) for j,w in b.items() for i,v in a.items()))
0