結果

問題 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  
実行時間 725 ms / 2,000 ms
コード長 961 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,188 KB
最終ジャッジ日時 2024-11-16 02:08:37
合計ジャッジ時間 4,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 33 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 131 ms
21,132 KB
testcase_11 AC 167 ms
19,732 KB
testcase_12 AC 708 ms
25,900 KB
testcase_13 AC 118 ms
17,092 KB
testcase_14 AC 204 ms
20,020 KB
testcase_15 AC 132 ms
15,232 KB
testcase_16 AC 152 ms
20,704 KB
testcase_17 AC 108 ms
14,644 KB
testcase_18 AC 725 ms
25,764 KB
testcase_19 AC 234 ms
17,488 KB
testcase_20 AC 225 ms
37,188 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