結果

問題 No.990 N×Mマス計算(Kの倍数)
ユーザー tamatotamato
提出日時 2020-02-14 23:50:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 1,213 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 114,744 KB
最終ジャッジ日時 2024-11-16 01:50:49
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,396 KB
testcase_01 AC 37 ms
54,400 KB
testcase_02 AC 38 ms
55,552 KB
testcase_03 AC 39 ms
54,716 KB
testcase_04 AC 41 ms
59,556 KB
testcase_05 AC 38 ms
55,200 KB
testcase_06 AC 38 ms
55,696 KB
testcase_07 AC 39 ms
55,156 KB
testcase_08 AC 38 ms
55,120 KB
testcase_09 AC 37 ms
54,516 KB
testcase_10 AC 90 ms
93,436 KB
testcase_11 AC 95 ms
92,536 KB
testcase_12 AC 158 ms
94,164 KB
testcase_13 AC 73 ms
80,672 KB
testcase_14 AC 88 ms
88,836 KB
testcase_15 AC 73 ms
80,280 KB
testcase_16 AC 96 ms
91,528 KB
testcase_17 AC 66 ms
76,560 KB
testcase_18 AC 153 ms
94,400 KB
testcase_19 AC 125 ms
86,564 KB
testcase_20 AC 136 ms
114,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    from collections import defaultdict
    from math import sqrt, gcd
    input = sys.stdin.buffer.readline

    N, M, K = map(int, input().split())
    line = input().split()
    op = line[0].decode()
    B = list(map(int, line[1:]))
    A = [0] * N
    for i in range(N):
        A[i] = int(input())

    ans = 0
    if op == '+':
        dic_B = defaultdict(int)
        for b in B:
            dic_B[b%K] += 1
        for a in A:
           ans += dic_B[(K - a%K)%K]
    else:
        nmax = int(sqrt(K))
        div = []
        div_append = div.append
        for d in range(1, nmax + 1):
            if K % d == 0:
                div_append(d)
                div_append(K // d)
        if nmax ** 2 == K:
            div.pop()
        div.sort()
        dic_A = {d: 0 for d in div}
        dic_B = {d: 0 for d in div}
        for a in A:
            dic_A[gcd(a, K)] += 1
        for b in B:
            dic_B[gcd(b, K)] += 1
        for d in div:
            for e in div:
                if e < d and d%e == 0:
                    dic_B[e] += dic_B[d]
        for d in dic_A:
            ans += dic_A[d] * dic_B[K//d]

    print(ans)


if __name__ == '__main__':
    main()
0