結果

問題 No.1164 GCD Products hard
ユーザー tonegawatonegawa
提出日時 2020-08-15 12:17:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 741 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 72,620 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-10-10 17:35:16
合計ジャッジ時間 47,184 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,096 ms
57,344 KB
testcase_01 TLE -
testcase_02 AC 1,855 ms
47,744 KB
testcase_03 AC 504 ms
18,688 KB
testcase_04 AC 504 ms
19,712 KB
testcase_05 AC 2,212 ms
56,448 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 1,806 ms
49,920 KB
testcase_10 AC 488 ms
17,280 KB
testcase_11 AC 2,002 ms
52,992 KB
testcase_12 TLE -
testcase_13 AC 1,539 ms
41,728 KB
testcase_14 AC 1,576 ms
49,408 KB
testcase_15 TLE -
testcase_16 AC 1,780 ms
53,504 KB
testcase_17 AC 2,201 ms
55,040 KB
testcase_18 AC 1,930 ms
50,688 KB
testcase_19 AC 548 ms
20,736 KB
testcase_20 AC 960 ms
28,672 KB
testcase_21 TLE -
testcase_22 AC 2 ms
6,820 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,820 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 ret, num, x;
  for(int g=b;g>=2;g--){
    ll tmp = b/g - a/g;
    ret = 1, num = tmp, x = n;
    for(;x;){
      if(x&1) ret = (ret*num)%Q;
      num=(num*num)%Q;
      x>>=1;
    }
    cnt[g] = ret;
    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