結果

問題 No.2872 Depth of the Parentheses
ユーザー n0ma_run0ma_ru
提出日時 2024-09-06 22:23:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,446 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 201,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 22:24:22
合計ジャッジ時間 3,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 128 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 32 ms
6,940 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 119 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 125 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 125 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 129 ms
6,940 KB
evil_01.txt WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt WA -
evil_05.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
template<class F, class S>
ostream& operator<<(ostream& os, pair<F,S>& p) {
    os << '(' << p.first << ',' << p.second << ')';
    return os;
}
template<class Iter>
void print(Iter beg, Iter end) {
    for (Iter itr = beg; itr != end; ++itr) {
        cerr << *itr << ' ';
    }
    cerr << '\n';
}
ll x,k;
ll mod = 998244353;
ll modpow(ll x, ll n, ll mod) {
    x %= mod;
    ll res = 1;
    while (n > 0) {
        if (n&1) res = res*x%mod;
        x = x*x%mod;
        n >>= 1;
    }
    return res;
}
int main() {
    cin >> x >> k;
    if (x > 100 || k > 10) return 0;
    x = x * modpow(100, mod-2, mod) % mod;

    k *= 2;
    ll ans = 0;
    for (int mask = 0; mask < 1<<k; ++mask) {
        ll p = 1;
        int ma = 0;
        int now = 0;
        bool ok = true;
        for (int i = 0; i < k; ++i) {
            if (mask >> i & 1) {
                ++now;
                p = p * x % mod;
            } else {
                --now;
                p = p * ((1-x + mod) % mod) % mod;
            }
            if (now < 0) {
                ok = false;
                break;
            }
            ma = max(ma, now);
        }
        ok = (ok && (now == 0));
        if (ok) {
            ans += p * ma % mod;
            ans %= mod;
        }
    }
    cout << ans << '\n';
}
0