結果

問題 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  
実行時間 482 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 39,744 KB
最終ジャッジ日時 2024-10-07 18:13:51
合計ジャッジ時間 3,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 146 ms
19,020 KB
testcase_11 AC 153 ms
16,708 KB
testcase_12 AC 482 ms
19,000 KB
testcase_13 AC 109 ms
15,248 KB
testcase_14 AC 185 ms
15,344 KB
testcase_15 AC 119 ms
12,532 KB
testcase_16 AC 177 ms
19,596 KB
testcase_17 AC 98 ms
12,516 KB
testcase_18 AC 481 ms
18,880 KB
testcase_19 AC 183 ms
14,724 KB
testcase_20 AC 303 ms
39,744 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