結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー rkyiolklorkyiolklo
提出日時 2020-04-21 10:54:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,784 KB
最終ジャッジ日時 2024-04-16 18:31:59
合計ジャッジ時間 3,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 162 ms
19,148 KB
testcase_11 AC 166 ms
16,704 KB
testcase_12 AC 511 ms
18,624 KB
testcase_13 AC 115 ms
15,304 KB
testcase_14 AC 203 ms
15,268 KB
testcase_15 AC 126 ms
12,400 KB
testcase_16 AC 188 ms
19,596 KB
testcase_17 AC 106 ms
12,388 KB
testcase_18 AC 525 ms
18,752 KB
testcase_19 AC 191 ms
14,728 KB
testcase_20 AC 332 ms
39,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math 
from collections import Counter 
n,m,k= map(int,input().split())
op, *B= input().split()
ca= Counter({"+":int(a)%k, "*":math.gcd(int(a),k)}[op] for a in sys.stdin)
cb= Counter({"+":-int(b)%k, "*":math.gcd(int(b),k)}[op] for b in B)

if op=="+":
    print(sum(ca[i]*cb[i] for i in ca if i in cb))

else:
    print(sum(ca[i]*cb[j] for i in ca for j in cb if i*j%k==0))
0