結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー convexineqconvexineq
提出日時 2021-05-06 07:55:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 136,136 KB
最終ジャッジ日時 2024-09-14 00:51:32
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,992 KB
testcase_01 AC 41 ms
54,628 KB
testcase_02 AC 43 ms
54,588 KB
testcase_03 AC 42 ms
54,264 KB
testcase_04 AC 42 ms
54,796 KB
testcase_05 AC 42 ms
54,132 KB
testcase_06 AC 42 ms
55,300 KB
testcase_07 AC 42 ms
54,676 KB
testcase_08 AC 42 ms
55,112 KB
testcase_09 AC 43 ms
55,184 KB
testcase_10 AC 128 ms
102,756 KB
testcase_11 AC 121 ms
106,336 KB
testcase_12 AC 235 ms
111,048 KB
testcase_13 AC 91 ms
91,672 KB
testcase_14 AC 144 ms
111,028 KB
testcase_15 AC 101 ms
97,192 KB
testcase_16 AC 140 ms
102,548 KB
testcase_17 AC 88 ms
88,080 KB
testcase_18 AC 236 ms
110,900 KB
testcase_19 AC 131 ms
99,444 KB
testcase_20 AC 224 ms
136,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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