結果

問題 No.2299 Antitypoglycemia
ユーザー D4Cngo_cppD4Cngo_cpp
提出日時 2023-05-12 23:53:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,062 bytes
コンパイル時間 3,807 ms
コンパイル使用メモリ 228,496 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 13:45:30
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 3 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 6 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 6 ms
6,940 KB
testcase_22 AC 7 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 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);
    p[0] = 1;
    reps(i,1,n+1){
        p[i] = p[i-1] * i;
        p[i]%=mod;
    }
    ll ans = 1;
    if(a == b){
        ans = (p[n] - 2*p[n-1])%mod;
    }else{
        ans = (p[n] - 2*p[n-1] + p[n-2])%mod;
    }

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