結果

問題 No.377 背景パターン
ユーザー maspymaspy
提出日時 2023-05-12 20:52:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,420 ms / 5,000 ms
コード長 1,395 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 129,224 KB
最終ジャッジ日時 2024-05-06 10:31:11
合計ジャッジ時間 18,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
44,416 KB
testcase_01 AC 461 ms
44,544 KB
testcase_02 AC 466 ms
44,284 KB
testcase_03 AC 482 ms
44,164 KB
testcase_04 AC 473 ms
44,804 KB
testcase_05 AC 470 ms
44,540 KB
testcase_06 AC 468 ms
44,288 KB
testcase_07 AC 465 ms
44,160 KB
testcase_08 AC 453 ms
44,672 KB
testcase_09 AC 473 ms
44,416 KB
testcase_10 AC 460 ms
44,800 KB
testcase_11 AC 489 ms
44,540 KB
testcase_12 AC 490 ms
44,544 KB
testcase_13 AC 487 ms
44,156 KB
testcase_14 AC 475 ms
44,284 KB
testcase_15 AC 458 ms
44,548 KB
testcase_16 AC 3,420 ms
125,052 KB
testcase_17 AC 3,356 ms
129,224 KB
testcase_18 AC 482 ms
44,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

MOD = 10 ** 9 + 7

U = int(10 ** 4.5 + 10)
is_prime = np.zeros(U, np.bool_)
is_prime[2] = 1
is_prime[3::2] = 1
for p in range(3, U, 2):
    if p * p >= U:
        break
    if is_prime[p]:
        is_prime[p * p:: p + p] = 0
primes = np.where(is_prime)[0]


def factor(N):
    div_p = primes[N % primes == 0].tolist()
    for p in div_p:
        e = 0
        while N % p == 0:
            N //= p
            e += 1
        yield (p, e)
    if N > 1:
        yield (N, 1)


def divisor_and_phi(N):
    div = np.array([1], np.int64)
    phi = np.array([1], np.int64)
    for p, e in factor(N):
        div = np.concatenate([div * pow(p, k) for k in range(0, e + 1)])
        phi = np.concatenate([phi] + [phi * (p - 1) * pow(p, k - 1) for k in range(1, e + 1)])
    return div, phi


H, W, K = map(int, read().split())
period_H, cnt_H = divisor_and_phi(H)
period_W, cnt_W = divisor_and_phi(W)

period = np.lcm.outer(period_H, period_W).ravel()
cnt = np.multiply.outer(cnt_H, cnt_W).ravel() % MOD
n_orbit = H * W // period

power = np.ones(len(n_orbit), np.int64)
KK = K
for i in range(64):
    power *= KK ** ((n_orbit >> i) & 1)
    power %= MOD
    KK *= KK
    KK %= MOD

x = (power * cnt % MOD).sum() % MOD
x *= pow(H * W, MOD - 2, MOD)
x %= MOD
print(x)
0