結果

問題 No.1164 GCD Products hard
ユーザー dachengzdachengz
提出日時 2022-12-19 15:34:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 368 bytes
コンパイル時間 607 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 213,632 KB
最終ジャッジ日時 2024-11-18 01:03:48
合計ジャッジ時間 81,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 1,578 ms
82,048 KB
testcase_04 AC 1,598 ms
191,232 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 1,639 ms
80,640 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,874 ms
84,224 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 32 ms
56,832 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 34 ms
51,840 KB
testcase_26 AC 32 ms
51,840 KB
testcase_27 AC 32 ms
51,584 KB
testcase_28 AC 32 ms
188,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, N = map(int, input().split())

mod = 10 ** 9 + 7
mod2 = 10 ** 9 + 6

A -= 1
B1 = B + 1
cnt = [0] * B1
for i in range(1, B1):
    cnt[i] = pow(B // i - A // i, N, mod2)
for i in range(B // 2, 1, -1):
    for n in range(2 * i, B1, i):
        cnt[i] -= cnt[n]
    cnt[i] %= mod2

ret = 1
for i in range(2, B1):
    ret = ret * pow(i, cnt[i], mod) % mod
print(ret)
0