結果
問題 | No.1164 GCD Products hard |
ユーザー | Mister |
提出日時 | 2020-08-18 06:09:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,670 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 75,100 KB |
実行使用メモリ | 36,796 KB |
最終ジャッジ日時 | 2024-10-11 16:16:27 |
合計ジャッジ時間 | 9,182 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,914 ms
30,020 KB |
testcase_01 | AC | 2,466 ms
33,132 KB |
testcase_02 | AC | 1,672 ms
25,308 KB |
testcase_03 | AC | 420 ms
10,640 KB |
testcase_04 | AC | 424 ms
11,288 KB |
testcase_05 | AC | 2,033 ms
29,616 KB |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 2,374 ms
36,796 KB |
testcase_09 | AC | 1,584 ms
26,352 KB |
testcase_10 | AC | 433 ms
9,980 KB |
testcase_11 | AC | 1,884 ms
27,796 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 1,440 ms
22,288 KB |
testcase_14 | AC | 1,370 ms
26,216 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 1,585 ms
28,192 KB |
testcase_17 | AC | 2,035 ms
29,020 KB |
testcase_18 | AC | 1,689 ms
26,748 KB |
testcase_19 | AC | 471 ms
11,892 KB |
testcase_20 | AC | 837 ms
15,604 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,824 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> template <int MOD> struct ModInt { using lint = long long; int val; // constructor ModInt(lint v = 0) : val(v % MOD) { if (val < 0) val += MOD; }; // unary operator ModInt operator+() const { return ModInt(val); } ModInt operator-() const { return ModInt(MOD - val); } ModInt inv() const { return this->pow(MOD - 2); } // arithmetic ModInt operator+(const ModInt& x) const { return ModInt(*this) += x; } ModInt operator-(const ModInt& x) const { return ModInt(*this) -= x; } ModInt operator*(const ModInt& x) const { return ModInt(*this) *= x; } ModInt operator/(const ModInt& x) const { return ModInt(*this) /= x; } ModInt pow(lint n) const { auto x = ModInt(1); auto b = *this; while (n > 0) { if (n & 1) x *= b; n >>= 1; b *= b; } return x; } // compound assignment ModInt& operator+=(const ModInt& x) { if ((val += x.val) >= MOD) val -= MOD; return *this; } ModInt& operator-=(const ModInt& x) { if ((val -= x.val) < 0) val += MOD; return *this; } ModInt& operator*=(const ModInt& x) { val = lint(val) * x.val % MOD; return *this; } ModInt& operator/=(const ModInt& x) { return *this *= x.inv(); } // compare bool operator==(const ModInt& b) const { return val == b.val; } bool operator!=(const ModInt& b) const { return val != b.val; } bool operator<(const ModInt& b) const { return val < b.val; } bool operator<=(const ModInt& b) const { return val <= b.val; } bool operator>(const ModInt& b) const { return val > b.val; } bool operator>=(const ModInt& b) const { return val >= b.val; } // I/O friend std::istream& operator>>(std::istream& is, ModInt& x) noexcept { lint v; is >> v; x = v; return is; } friend std::ostream& operator<<(std::ostream& os, const ModInt& x) noexcept { return os << x.val; } }; constexpr int MOD = 1000000007; using mint = ModInt<MOD>; using smint = ModInt<MOD - 1>; void solve() { int l, r, n; std::cin >> l >> r >> n; std::vector<smint> cnt(r + 1); for (int g = r; g >= 1; --g) { cnt[g] = smint(r / g - (l - 1) / g).pow(n); for (int p = g * 2; p <= r; p += g) { cnt[g] -= cnt[p]; } } mint ans = 1; for (int g = 1; g <= r; ++g) { ans *= mint(g).pow(cnt[g].val); } std::cout << ans << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }