結果
問題 | No.2131 Concon Substrings (COuNt Version) |
ユーザー | 👑 AngrySadEight |
提出日時 | 2022-10-26 22:57:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 1,277 bytes |
コンパイル時間 | 602 ms |
コンパイル使用メモリ | 74,624 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 11:00:56 |
合計ジャッジ時間 | 1,432 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'll my_pow(ll, ll, ll)': main.cpp:17:12: warning: 'ret' may be used uninitialized [-Wmaybe-uninitialized] 17 | return ret; | ^~~ main.cpp:7:8: note: 'ret' was declared here 7 | ll ret; | ^~~
ソースコード
#include <iostream> #include <vector> using namespace std; typedef long long ll; ll my_pow(ll x, ll n, ll mod){ ll ret; if (n == 0){ ret = 1; } else if (n % 2 == 0){ ret = my_pow((x * x) % mod, n / 2, mod); } else if (n % 2 == 1){ ret = (x * my_pow((x * x) % mod, n / 2, mod)) % mod; } return ret; } ll inv(ll x, ll mod){ return my_pow(x, mod - 2, mod); } ll comb(ll n, ll r, vector<ll> &fact, vector<ll> &fact_inv, ll mod){ ll ret = (fact_inv[r] * fact_inv[n - r]) % mod; ret = (ret * fact[n]) % mod; return ret; } int main(){ ll N; cin >> N; ll mod = 998244353; vector<ll> fact(N + 2, 0); fact[0] = 1; for (ll i = 0; i <= N; i++){ fact[i + 1] = (fact[i] * (i + 1)) % mod; } vector<ll> fact_inv(N + 2); for (ll i = 0; i <= N + 1; i++){ fact_inv[i] = inv(fact[i], mod); } vector<ll> pow_25(N + 2); pow_25[0] = 1; for (ll i = 0; i <= N; i++){ pow_25[i + 1] = (pow_25[i] * 25LL) % mod; } ll ans = 0; for (ll i = 0; i <= N; i++){ ll comb1 = comb(N, i, fact, fact_inv, mod); comb1 = (comb1 * pow_25[N - i]) % mod; ans = (ans + comb1 * (i / 3)) % mod; } cout << ans << endl; }