結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー kota_ritskota_rits
提出日時 2020-02-15 03:52:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 634 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,092 KB
最終ジャッジ日時 2024-04-27 20:44:02
合計ジャッジ時間 3,644 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 113 ms
20,756 KB
testcase_11 AC 151 ms
19,860 KB
testcase_12 AC 625 ms
25,768 KB
testcase_13 AC 99 ms
17,052 KB
testcase_14 AC 174 ms
19,892 KB
testcase_15 AC 117 ms
15,104 KB
testcase_16 AC 125 ms
20,572 KB
testcase_17 AC 91 ms
14,644 KB
testcase_18 AC 634 ms
25,640 KB
testcase_19 AC 198 ms
17,612 KB
testcase_20 AC 185 ms
37,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
from math import gcd
n,m,k = map(int,stdin.readline().rstrip().split())
li = list(map(str,stdin.readline().rstrip().split()))
op = li[0]
b = [int(li[i]) for i in range(1,m+1)]
a = [int(stdin.readline().rstrip()) for _ in range(n)]
point = 0
if op == "+":
    dic = {}
    for B in b:
        if B%k in dic:
            dic[B%k] += 1
        else:
            dic[B%k] = 1
    for A in a:
        if -A%k in dic:
            point += dic[-A%k]
elif op == "*":
    dic_A = {};dic_B = {}
    for B in b:
        gcd_B = gcd(B,k)
        if gcd_B in dic_B:
            dic_B[gcd_B] += 1
        else:
            dic_B[gcd_B] = 1
    for A in a:
        gcd_A = gcd(A,k)
        if gcd_A in dic_A:
            dic_A[gcd_A] += 1
        else:
            dic_A[gcd_A] = 1
    for A_key,A_value in dic_A.items():
        for B_key,B_value in dic_B.items():
            if A_key*B_key%k == 0:
                point += A_value*B_value
print(point)
0