結果

問題 No.1164 GCD Products hard
ユーザー とりゐとりゐ
提出日時 2022-01-14 15:18:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 236 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 198,400 KB
最終ジャッジ日時 2024-11-19 07:45:35
合計ジャッジ時間 84,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 2,183 ms
83,712 KB
testcase_04 AC 2,225 ms
198,400 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2,182 ms
82,432 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 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 41 ms
57,088 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 40 ms
52,352 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 39 ms
51,712 KB
testcase_28 AC 39 ms
198,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,n=map(int,input().split())
mod=10**9+7
ans=1
cnt=[0]*(b+1)
for i in range(b,0,-1):
  tmp=pow(b//i-(a-1)//i,n,mod-1)
  for j in range(2*i,b+1,i):
    tmp-=cnt[j]
    tmp%=mod-1
  cnt[i]=tmp
  ans*=pow(i,tmp,mod)
  ans%=mod
print(ans)
0