結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-12 23:24:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,184 KB
最終ジャッジ日時 2024-09-19 22:33:07
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
11,008 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 87 ms
19,092 KB
testcase_11 AC 98 ms
18,688 KB
testcase_12 AC 574 ms
22,436 KB
testcase_13 AC 72 ms
16,904 KB
testcase_14 AC 112 ms
18,236 KB
testcase_15 AC 79 ms
14,640 KB
testcase_16 AC 112 ms
20,124 KB
testcase_17 AC 67 ms
14,208 KB
testcase_18 AC 566 ms
22,376 KB
testcase_19 AC 172 ms
16,188 KB
testcase_20 AC 190 ms
36,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from collections import Counter
import bisect
from operator import add, mul
import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)

n, m, k = map(int, input().split())
op, *B = input().split()
B = list(map(int, B))
A = [int(input()) for _ in range(n)]

if op == "+":
    A = [a % k for a in A]
    B = [b % k for b in B]
    ca = Counter(A)
    cb = Counter(B)

    ans = ca[0] * cb[0]
    for key, val in ca.items():
        ans += val * cb[k - key]
    print(ans)
else:
    A = [gcd(a, k) for a in A]
    B = [gcd(b, k) for b in B]
    ca = Counter(A)
    cb = Counter(B)

    ans = 0
    for ka, va in ca.items():
        for kb, vb in cb.items():
            if kb % (k // ka) == 0:
                ans += va * vb
    print(ans)
0