結果

問題 No.1164 GCD Products hard
ユーザー 37zigen37zigen
提出日時 2020-08-20 10:07:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,154 ms / 2,500 ms
コード長 401 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 154,224 KB
最終ジャッジ日時 2024-10-13 02:52:41
合計ジャッジ時間 19,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 760 ms
129,708 KB
testcase_01 AC 958 ms
135,552 KB
testcase_02 AC 691 ms
119,904 KB
testcase_03 AC 212 ms
84,172 KB
testcase_04 AC 219 ms
85,364 KB
testcase_05 AC 777 ms
128,724 KB
testcase_06 AC 972 ms
139,848 KB
testcase_07 AC 966 ms
143,632 KB
testcase_08 AC 924 ms
143,216 KB
testcase_09 AC 682 ms
122,044 KB
testcase_10 AC 209 ms
82,888 KB
testcase_11 AC 741 ms
125,124 KB
testcase_12 AC 983 ms
139,384 KB
testcase_13 AC 550 ms
114,136 KB
testcase_14 AC 564 ms
121,552 KB
testcase_15 AC 988 ms
144,676 KB
testcase_16 AC 673 ms
125,656 KB
testcase_17 AC 771 ms
127,380 KB
testcase_18 AC 680 ms
122,684 KB
testcase_19 AC 243 ms
85,840 KB
testcase_20 AC 346 ms
96,844 KB
testcase_21 AC 1,049 ms
144,732 KB
testcase_22 AC 35 ms
52,208 KB
testcase_23 AC 979 ms
154,224 KB
testcase_24 AC 1,154 ms
154,004 KB
testcase_25 AC 32 ms
52,680 KB
testcase_26 AC 33 ms
52,676 KB
testcase_27 AC 32 ms
53,356 KB
testcase_28 AC 33 ms
52,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

isPrime=[True]*(B+1)
isPrime[0]=isPrime[1]=False
for i in range(2,B+1):
    if not isPrime[i]:
        continue
    for j in range(i*i,B+1,i):
        isPrime[j]=False
MOD=10**9+7

ans=1

for p in range(B+1):
    if not isPrime[p]:
        continue
    pe=p
    while pe<=B:
        ans*=pow(p,pow(B//pe-(A-1)//pe,N,MOD-1),MOD)
        ans%=MOD
        pe*=p
print(ans)
0