結果
問題 | No.1164 GCD Products hard |
ユーザー | chocorusk |
提出日時 | 2020-08-11 23:57:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,146 bytes |
コンパイル時間 | 1,452 ms |
コンパイル使用メモリ | 128,276 KB |
実行使用メモリ | 88,092 KB |
最終ジャッジ日時 | 2024-10-09 12:01:00 |
合計ジャッジ時間 | 55,418 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,263 ms
64,492 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 1,978 ms
47,816 KB |
testcase_03 | AC | 548 ms
19,528 KB |
testcase_04 | AC | 525 ms
19,788 KB |
testcase_05 | AC | 2,380 ms
56,388 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 1,933 ms
49,864 KB |
testcase_10 | AC | 526 ms
17,352 KB |
testcase_11 | AC | 2,156 ms
52,808 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 1,676 ms
41,928 KB |
testcase_14 | AC | 1,657 ms
51,020 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,931 ms
54,092 KB |
testcase_17 | AC | 2,353 ms
55,116 KB |
testcase_18 | AC | 2,027 ms
51,016 KB |
testcase_19 | AC | 568 ms
22,216 KB |
testcase_20 | AC | 1,042 ms
28,996 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 2 ms
6,816 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; const ll MOD=1e9+7; ll powmod(ll a, ll k, ll mod){ ll ap=a, ans=1; while(k){ if(k&1){ ans*=ap; ans%=mod; } ap=ap*ap; ap%=mod; k>>=1; } return ans; } ll inv(ll a, ll mod){ return powmod(a, mod-2, mod); } ll c[10000010]; int main() { int a, b, n; cin>>a>>b>>n; for(int d=b; d>=1; d--){ c[d]=powmod(b/d-(a-1)/d, n, MOD-1); for(int i=2*d; i<=b; i+=d){ c[d]+=MOD-1-c[i]; if(c[d]>=MOD-1) c[d]-=(MOD-1); } } ll ans=1; for(int i=1; i<=b; i++){ (ans*=powmod(i, c[i], MOD))%=MOD; } cout<<ans<<endl; return 0; }