結果
問題 | No.2380 Sylow P-subgroup |
ユーザー | _____TAB_____ |
提出日時 | 2023-07-15 13:04:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,250 bytes |
コンパイル時間 | 765 ms |
コンパイル使用メモリ | 69,248 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-16 21:30:21 |
合計ジャッジ時間 | 1,260 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> using namespace std; #include <iostream> #include <cassert> template<long long mod> class modint{ private: using T = long long; T a; public: constexpr modint(const long long x = 0) noexcept : a((x%mod+mod)%mod) {} constexpr T& value() noexcept { return a; } constexpr const T& value() const noexcept { return a; } constexpr modint operator-() const noexcept { return modint(0) -= *this; } constexpr modint operator+(const modint& rhs) const noexcept { return modint(*this) += rhs; } constexpr modint operator-(const modint& rhs) const noexcept { return modint(*this) -= rhs; } constexpr modint operator*(const modint& rhs) const noexcept { return modint(*this) *= rhs; } constexpr modint operator/(const modint& rhs) const noexcept { return modint(*this) /= rhs; } constexpr modint& operator+=(const modint& rhs) noexcept { a += rhs.a; if(a >= mod) a -= mod; return *this; } constexpr modint& operator-=(const modint& rhs) noexcept { if(a < rhs.a) a += mod; a -= rhs.a; return *this; } constexpr modint& operator*=(const modint& rhs) noexcept { a = a*rhs.a%mod; return *this; } constexpr modint& operator/=(const modint& rhs) noexcept { return *this *= rhs.inv(); } constexpr bool operator==(const modint& rhs) const noexcept { return a == rhs.a; } constexpr bool operator!=(const modint& rhs) const noexcept { return not (*this == rhs); } constexpr modint pow(long long k) const noexcept { modint ret(1); modint x = k > 0 ? *this : this->inv(); k = abs(k); while(k > 0){ if(k&1) ret *= x; x *= x; k >>= 1; } return ret; } constexpr modint inv() const noexcept { return pow(mod-2); } friend std::ostream& operator<<(std::ostream &os, const modint &X) noexcept { return os << X.a; } friend std::istream& operator>>(std::istream &is, modint &X) noexcept { is >> X.a; X.a %= mod; if(X.a < 0) X.a += mod; return is; } }; int main(){ using mint = modint<998244353>; long long n, p; cin >> n >> p; long long q = 1; long long cnt = 0; while(q <= n/p){ q *= p; cnt += n/q; } cout << mint(p).pow(cnt) << '\n'; }