結果

問題 No.1164 GCD Products hard
ユーザー tonegawatonegawa
提出日時 2020-08-15 12:16:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 805 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 71,368 KB
実行使用メモリ 140,800 KB
最終ジャッジ日時 2024-10-10 17:34:00
合計ジャッジ時間 46,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,927 ms
110,848 KB
testcase_01 AC 2,434 ms
122,880 KB
testcase_02 AC 1,695 ms
92,032 KB
testcase_03 AC 458 ms
33,664 KB
testcase_04 AC 476 ms
35,712 KB
testcase_05 AC 2,036 ms
109,184 KB
testcase_06 AC 2,496 ms
131,328 KB
testcase_07 TLE -
testcase_08 AC 2,438 ms
137,836 KB
testcase_09 AC 1,664 ms
96,128 KB
testcase_10 AC 419 ms
30,828 KB
testcase_11 AC 1,871 ms
102,280 KB
testcase_12 TLE -
testcase_13 AC 1,478 ms
79,744 KB
testcase_14 AC 1,524 ms
94,976 KB
testcase_15 TLE -
testcase_16 AC 1,778 ms
103,552 KB
testcase_17 AC 2,128 ms
106,240 KB
testcase_18 AC 1,860 ms
97,408 KB
testcase_19 AC 527 ms
38,016 KB
testcase_20 AC 896 ms
53,888 KB
testcase_21 TLE -
testcase_22 AC 2 ms
5,248 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#define vll vector<ll>
using namespace std;
typedef long long int ll;
#define P 1000000007
#define Q 1000000006

int main() {
  ll a, b, n, ans = 1;
  scanf("%lld %lld %lld", &a, &b, &n);
  a--;
  ll cnt[b+1];
  ll mp[b+1];

  ll ret, num, x;
  for(int i=0;i<=b;i++){
    ret = 1, num = i, x = n;
    for(;x;){
      if(x&1) ret = (ret*num)%Q;
      num= (num*num)%Q;
      x>>=1;
    }
    mp[i] = ret;
  }

  for(int g=b;g>=2;g--){
    ll tmp = b/g - a/g;
    cnt[g] = mp[tmp];
    for(int k=2*g;k<=b;k+=g) cnt[g] -= cnt[k];
    ll t = abs(cnt[g])/Q + 1;
    cnt[g] = (cnt[g] + t*Q)%Q;
    ret = 1, num = g, x = cnt[g];
    for(;x;){
      if(x&1) ret = (ret*num)%P;
      num=(num*num)%P;
      x>>=1;
    }
    ans = (ans * ret)%P;
  }
  printf("%lld\n", ans);
}
0