結果
問題 | No.1164 GCD Products hard |
ユーザー | 👑 CleyL |
提出日時 | 2023-08-06 19:44:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,816 bytes |
コンパイル時間 | 1,147 ms |
コンパイル使用メモリ | 121,444 KB |
実行使用メモリ | 47,616 KB |
最終ジャッジ日時 | 2024-11-06 22:48:51 |
合計ジャッジ時間 | 54,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,200 ms
35,072 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 1,886 ms
25,344 KB |
testcase_03 | AC | 473 ms
10,752 KB |
testcase_04 | AC | 482 ms
11,264 KB |
testcase_05 | AC | 2,345 ms
29,696 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | AC | 1,845 ms
26,496 KB |
testcase_10 | AC | 479 ms
9,984 KB |
testcase_11 | AC | 2,105 ms
27,904 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 1,583 ms
22,272 KB |
testcase_14 | AC | 1,580 ms
26,112 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,882 ms
28,032 KB |
testcase_17 | AC | 2,337 ms
28,800 KB |
testcase_18 | AC | 2,015 ms
26,624 KB |
testcase_19 | AC | 547 ms
11,776 KB |
testcase_20 | AC | 955 ms
15,744 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 3 ms
5,248 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#line 2 "/home/sakflat/CP/_library/cpp/template/template.cpp" //yukicoder@cpp17 #include <iostream> #include <cmath> #include <algorithm> #include <iomanip> #include <string> #include <vector> #include <set> #include <stack> #include <queue> #include <map> #include <bitset> #include <complex> #include <cctype> #include <utility> #include <climits> #include <numeric> #include <functional> using namespace std; using ll = long long; using P = pair<ll,ll>; const ll MOD = 1000000007; const ll MOD2 = 1000000006; const int INF = (1<<30)-1; const ll LINF = (1LL<<62LL)-1; const double EPS = (1e-10); P ar4[4] = {{0,1},{0,-1},{1,0},{-1,0}}; P ar8[8] = {{-1,-1},{-1,0},{-1,1},{0,-1},{0,1},{1,-1},{1,0},{1,1}}; template <typename T> vector<T> make_vector(size_t a, T b) { return vector<T>(a, b); } template <typename... Ts> auto make_vector(size_t a, Ts... ts) { return vector<decltype(make_vector(ts...))>(a, make_vector(ts...)); } /* 確認ポイント cout << fixed << setprecision(n) << 小数計算//n桁の小数表記になる 計算量は変わらないが楽できるシリーズ min(max)_element(iter,iter)で一番小さい(大きい)値のポインタが帰ってくる count(iter,iter,int)でintがiterからiterの間にいくつあったかを取得できる */ /* function corner below */ /* Function corner above */ /* comment outed because can cause bugs __attribute__((constructor)) void initial() { cin.tie(0); ios::sync_with_stdio(false); } */ template <int mod> struct ModInt{ int n; ModInt():n(0){} ModInt(int n_):n(n_ >= 0 ? n_%mod : mod - ((-n_)%mod) ){} ModInt &operator+=(const ModInt &p){ if((n+=p.n) >= mod)n-=mod; return *this; } ModInt &operator-=(const ModInt &p){ n+=mod-p.n; if(n >= mod)n-=mod; return *this; } ModInt &operator*=(const ModInt &p){ n = (int) ((1LL*n*p.n)%mod); return *this; } ModInt &operator/=(const ModInt &p){ *this *= p.inverse(); return *this; } ModInt operator-() const {return ModInt(-n);} ModInt operator+(const ModInt &p) const {return ModInt(*this) += p;} ModInt operator-(const ModInt &p) const {return ModInt(*this) -= p;} ModInt operator*(const ModInt &p) const {return ModInt(*this) *= p;} ModInt operator/(const ModInt &p) const {return ModInt(*this) /= p;} bool operator==(const ModInt &p) const {return n==p.n;} bool operator<(const ModInt &p) const {return n<p.n;} bool operator>(const ModInt &p) const {return n>p.n;} bool operator>=(const ModInt &p) const {return n>=p.n;} bool operator<=(const ModInt &p) const {return n<=p.n;} bool operator!=(const ModInt &p) const {return n!=p.n;} ModInt inverse() const { int a = n,b = mod,u = 1,v = 0; while(b){ int t = a/b; a -= t*b; swap(a,b); u -= t*v; swap(u,v); } return ModInt(u); } ModInt pow(int64_t z) const { ModInt ret(1),mul(n); while(z > 0){ if(z & 1) ret *= mul; mul *= mul; z >>= 1; } return ret; } friend ostream &operator<<(ostream &os, const ModInt &p){ return os << p.n; } friend istream &operator>>(istream &is, ModInt &a){ int64_t t; is >> t; a = ModInt<mod> (t); return (is); } }; template <typename T> T uPow(T z,T n, T mod){ T ans = 1; while(n != 0){ if(n%2){ ans*=z; if(mod)ans%=mod; } n >>= 1; z*=z; if(mod)z%=mod; } return ans; } int main(){ long long a,b,n;cin>>a>>b>>n; vector<ModInt<MOD2>> ret(b+1); for(int i = b; 1 <= i; i--){ ModInt<MOD2> tmp = uPow(b/i - (a-1)/i, n, MOD2); for(int j = i+i; b >= j; j+=i){ tmp -= ret[j]; } ret[i] = tmp; } ModInt<MOD> ans = 1; for(int i = 1; b >= i; i++){ ans *= uPow((long long)i, (long long)ret[i].n, MOD); } cout << ans << endl; return 0; }