結果

問題 No.1164 GCD Products hard
ユーザー MitarushiMitarushi
提出日時 2020-08-11 15:37:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,268 ms / 2,500 ms
コード長 570 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 154,112 KB
最終ジャッジ日時 2024-10-09 11:27:37
合計ジャッジ時間 21,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 831 ms
129,536 KB
testcase_01 AC 1,031 ms
135,424 KB
testcase_02 AC 749 ms
120,064 KB
testcase_03 AC 238 ms
83,456 KB
testcase_04 AC 243 ms
84,864 KB
testcase_05 AC 850 ms
128,768 KB
testcase_06 AC 1,057 ms
140,032 KB
testcase_07 AC 1,054 ms
143,232 KB
testcase_08 AC 1,009 ms
142,976 KB
testcase_09 AC 739 ms
121,856 KB
testcase_10 AC 242 ms
81,664 KB
testcase_11 AC 823 ms
125,056 KB
testcase_12 AC 1,061 ms
139,392 KB
testcase_13 AC 629 ms
113,792 KB
testcase_14 AC 635 ms
121,472 KB
testcase_15 AC 1,083 ms
144,384 KB
testcase_16 AC 748 ms
125,696 KB
testcase_17 AC 863 ms
127,232 KB
testcase_18 AC 758 ms
122,880 KB
testcase_19 AC 270 ms
86,016 KB
testcase_20 AC 392 ms
96,896 KB
testcase_21 AC 1,152 ms
144,384 KB
testcase_22 AC 39 ms
51,584 KB
testcase_23 AC 1,051 ms
154,112 KB
testcase_24 AC 1,268 ms
153,984 KB
testcase_25 AC 39 ms
51,712 KB
testcase_26 AC 39 ms
51,712 KB
testcase_27 AC 38 ms
51,840 KB
testcase_28 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, n = [int(i) for i in input().split()]

ans = 1
mod = 10**9+7

table = [True] * (b + 1)
table[0] = False
table[1] = False
for i in range(b + 1):
    if table[i]:
        for j in range(i * i, b + 1, i):
            table[j] = False

        lower = (a-1)//i
        upper = b // i
        power = 0
        while True:
            power += pow(upper - lower, n, mod - 1)
            power%=mod-1
            lower //= i
            upper //= i
            if upper - lower == 0:
                break
        ans *= pow(i, power, mod)
        ans %= mod
print(ans)
0