結果
問題 | No.2380 Sylow P-subgroup |
ユーザー | shojin_pro |
提出日時 | 2023-07-14 21:57:51 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 616 bytes |
コンパイル時間 | 2,705 ms |
コンパイル使用メモリ | 199,624 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-16 06:56:09 |
合計ジャッジ時間 | 2,672 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> using namespace std; long long pow2(long long b, long long n, long long mod){ if(n == 0) return 1LL; if(n == 1) return b; long long bn = pow2(b,n/2LL,mod); if(n % 2 == 0){ return (bn*bn)%mod; }else{ return (bn*bn)%mod*b%mod; } } int main(void){ long long N; long long P; long long mod = 998244353LL; long long ans = 0; cin >> N >> P; long long nowP = P; long long count = 0; while(nowP <= N){ count += N / nowP; nowP *= P; } ans = pow2(P,count,mod); ans %= mod; cout << ans << "\n"; }