結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー convexineqconvexineq
提出日時 2021-05-06 07:47:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 298 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 109,520 KB
最終ジャッジ日時 2024-09-14 00:43:31
合計ジャッジ時間 4,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,244 KB
testcase_01 AC 42 ms
54,460 KB
testcase_02 AC 43 ms
55,336 KB
testcase_03 AC 48 ms
60,696 KB
testcase_04 AC 43 ms
54,484 KB
testcase_05 AC 51 ms
62,712 KB
testcase_06 AC 43 ms
55,036 KB
testcase_07 AC 43 ms
53,852 KB
testcase_08 AC 49 ms
60,776 KB
testcase_09 AC 49 ms
60,572 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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