結果

問題 No.1158 GCD Products easy
ユーザー NoaSaberNoaSaber
提出日時 2021-04-06 21:03:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 53,696 KB
最終ジャッジ日時 2024-06-11 19:08:43
合計ジャッジ時間 2,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,140 KB
testcase_01 AC 31 ms
52,876 KB
testcase_02 AC 33 ms
53,256 KB
testcase_03 AC 32 ms
52,068 KB
testcase_04 AC 33 ms
52,408 KB
testcase_05 AC 32 ms
52,000 KB
testcase_06 AC 32 ms
52,132 KB
testcase_07 AC 32 ms
53,680 KB
testcase_08 AC 33 ms
53,696 KB
testcase_09 AC 32 ms
52,940 KB
testcase_10 AC 32 ms
53,612 KB
testcase_11 AC 32 ms
52,948 KB
testcase_12 AC 32 ms
52,940 KB
testcase_13 AC 33 ms
52,460 KB
testcase_14 AC 33 ms
52,932 KB
testcase_15 AC 33 ms
52,736 KB
testcase_16 AC 33 ms
53,352 KB
testcase_17 AC 32 ms
52,180 KB
testcase_18 AC 31 ms
52,192 KB
testcase_19 AC 33 ms
52,276 KB
testcase_20 AC 32 ms
52,196 KB
testcase_21 AC 32 ms
52,272 KB
testcase_22 AC 33 ms
52,812 KB
testcase_23 AC 32 ms
52,816 KB
testcase_24 AC 34 ms
52,760 KB
testcase_25 AC 32 ms
52,092 KB
testcase_26 AC 33 ms
52,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,N=map(int,input().split())
mod=10**9+7
ans=1
cnt=[0]*(B+1)
for i in range(B,1,-1):
    if i==1:
        break
    x=B//i-(A-1)//i
    cnt[i]=pow(x,N,mod)
    for j in range(i*2,B+1,i):
        cnt[i]-=cnt[j]
for i,j in enumerate(cnt):
    ans*=pow(i,j,mod)
    ans%=mod
print(ans)
0