結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー convexineqconvexineq
提出日時 2021-05-06 06:30:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 116,060 KB
最終ジャッジ日時 2024-09-13 23:47:16
合計ジャッジ時間 2,897 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 42 ms
53,632 KB
testcase_02 AC 43 ms
54,016 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 44 ms
53,888 KB
testcase_06 AC 46 ms
54,272 KB
testcase_07 AC 42 ms
53,760 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 42 ms
53,888 KB
testcase_10 AC 99 ms
96,640 KB
testcase_11 AC 106 ms
97,656 KB
testcase_12 AC 205 ms
106,832 KB
testcase_13 AC 77 ms
80,768 KB
testcase_14 AC 106 ms
100,096 KB
testcase_15 AC 74 ms
82,816 KB
testcase_16 AC 109 ms
100,176 KB
testcase_17 AC 73 ms
79,232 KB
testcase_18 AC 202 ms
107,116 KB
testcase_19 AC 119 ms
92,872 KB
testcase_20 AC 155 ms
116,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter as C
import math
n,m,k,op,*ab = open(0).read().split()
m,k = int(m),int(k)
f = lambda x: int(x)%k if op=="+" else math.gcd(k,int(x))
a = C(map(f,ab[:m]))
b = C(map(f,ab[m:]))
print(sum(v*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