結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー convexineqconvexineq
提出日時 2021-05-06 06:23:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 348 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,768 KB
最終ジャッジ日時 2024-09-13 23:41:02
合計ジャッジ時間 4,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,136 KB
testcase_01 AC 48 ms
53,248 KB
testcase_02 AC 59 ms
62,208 KB
testcase_03 AC 47 ms
53,888 KB
testcase_04 AC 47 ms
53,376 KB
testcase_05 AC 47 ms
54,272 KB
testcase_06 AC 47 ms
53,888 KB
testcase_07 AC 59 ms
62,336 KB
testcase_08 AC 47 ms
53,888 KB
testcase_09 AC 47 ms
53,888 KB
testcase_10 AC 120 ms
96,128 KB
testcase_11 AC 111 ms
96,768 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import math
n,m,k,op,*ab = open(0).read().split()
m,k = int(m),int(k)
f = math.gcd if op=="x" else lambda x,y:y%x
a = Counter(f(k,int(i)) for i in ab[:m])
b = Counter(f(k,int(i)) for i in 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