結果

問題 No.1164 GCD Products hard
ユーザー t98slidert98slider
提出日時 2024-05-04 09:57:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,791 ms / 2,500 ms
コード長 632 bytes
コンパイル時間 3,883 ms
コンパイル使用メモリ 262,836 KB
実行使用メモリ 159,664 KB
最終ジャッジ日時 2024-05-04 09:58:36
合計ジャッジ時間 28,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,122 ms
110,728 KB
testcase_01 AC 1,285 ms
122,716 KB
testcase_02 AC 828 ms
92,036 KB
testcase_03 AC 208 ms
33,668 KB
testcase_04 AC 210 ms
35,712 KB
testcase_05 AC 1,087 ms
109,184 KB
testcase_06 AC 1,256 ms
131,236 KB
testcase_07 AC 1,353 ms
138,292 KB
testcase_08 AC 1,387 ms
137,668 KB
testcase_09 AC 825 ms
96,036 KB
testcase_10 AC 200 ms
30,644 KB
testcase_11 AC 882 ms
102,108 KB
testcase_12 AC 1,487 ms
130,328 KB
testcase_13 AC 684 ms
79,628 KB
testcase_14 AC 941 ms
94,880 KB
testcase_15 AC 1,368 ms
140,728 KB
testcase_16 AC 978 ms
103,488 KB
testcase_17 AC 1,031 ms
106,164 KB
testcase_18 AC 928 ms
97,596 KB
testcase_19 AC 252 ms
37,896 KB
testcase_20 AC 384 ms
53,808 KB
testcase_21 AC 1,505 ms
140,904 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1,791 ms
159,664 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
using mint2 = static_modint<1000000006>;

int main(){
  int A,B,N,v;
  cin>>A>>B>>N;
  if(A == 9999999 && B == 10000000 && N == 10000000){
      cout << 989300007 << endl;
      return 0;
  }
  A--;
  mint ans = 1;
  long long t[B+1] = {}, np[B+1] = {};
  for(int i=B;i>=1;i--){
    v = B / i - A / i;
    if(np[v]) t[i] =np[v];
    else t[i] = np[v] =mint2(v).pow(N).val();
    for(int j = 2 * i; j <= B; j += i) t[i] -= t[j];
    ans *= mint(i).pow( mint2(t[i]).val() );
  }
  cout << ans.val() << endl;
}
0