結果

問題 No.2299 Antitypoglycemia
ユーザー D4Cngo_cppD4Cngo_cpp
提出日時 2023-05-12 23:38:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,189 bytes
コンパイル時間 3,611 ms
コンパイル使用メモリ 228,880 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 13:34:22
合計ジャッジ時間 28,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 1,388 ms
5,376 KB
testcase_04 AC 1,372 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,281 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 511 ms
5,376 KB
testcase_12 WA -
testcase_13 TLE -
testcase_14 AC 185 ms
5,376 KB
testcase_15 AC 170 ms
5,376 KB
testcase_16 AC 632 ms
5,376 KB
testcase_17 AC 357 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 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;

int mod = 998244353;
mint kaijo(ll n){
    if(n <= 1) return 1;
    return n*(n-1);
}

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;
        debug(p[i]);
    }
    ll ans = 1;
    if(a != b){
        ans = (n-1)*p[n-1] - (n-2)*p[n-2];
        ans%=mod;
    }else{
        ans = (n-1)*p[n-1] - (n-1)*p[n-2];
        ans%=mod;
    }

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