結果

問題 No.2299 Antitypoglycemia
ユーザー D4Cngo_cppD4Cngo_cpp
提出日時 2023-05-13 00:00:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,088 bytes
コンパイル時間 4,238 ms
コンパイル使用メモリ 229,628 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-06 13:51:15
合計ジャッジ時間 30,467 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 1,375 ms
6,940 KB
testcase_04 AC 1,398 ms
6,940 KB
testcase_05 AC 837 ms
6,940 KB
testcase_06 AC 1,379 ms
6,940 KB
testcase_07 AC 302 ms
6,944 KB
testcase_08 AC 1,301 ms
6,944 KB
testcase_09 AC 1,430 ms
6,940 KB
testcase_10 AC 517 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 1,540 ms
6,944 KB
testcase_13 TLE -
testcase_14 AC 180 ms
6,944 KB
testcase_15 AC 164 ms
6,940 KB
testcase_16 AC 626 ms
6,940 KB
testcase_17 AC 369 ms
6,944 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
#define reps(i, a, n) for(ll i = (a); i < (ll)(n); ++i)
#define rep(i,n) reps(i,0,n)
#define all(a) (a).begin(), (a).end();
#define debug(x) cerr << "\033[33m(line:" << __LINE__ << ") " << #x << ": " << x << "\033[m" << endl;

//なんかstd::vector<bool>の挙動を修正できるやつ

/* alias */
using ull = unsigned long long;
using ll = long long;
using vi = vector<int>;
using vl = vector<long>;
using vll = vector<long long>;
using vvi = vector<vi>;
using vvl = vector<vl>;
using vvll = vector<vll>;
using vs = vector<string>;
using pii = pair<int, int>;
using mint = modint998244353;
ll mod = 998244353;
int main(){
    int n, a, b;
    cin >> n >> a >> b;
    vll p(n+1,1);
    p[0] = 1;
    reps(i,1,n+1){
        p[i] = p[i-1] * i;
        p[i]%=mod;
        debug(p[i]);
    }
    ll ans;
    if(a == b){
        ans = (p[n] - 2*p[n-1]+mod)%mod;
    }else{
        ans = (p[n] - 2*p[n-1] + p[n-2]+mod)%mod;
    }

    cout << ans << endl;
    return 0;   
}
0