結果

問題 No.2299 Antitypoglycemia
ユーザー tentententen
提出日時 2024-05-02 13:04:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 1,539 bytes
コンパイル時間 3,386 ms
コンパイル使用メモリ 78,744 KB
実行使用メモリ 38,100 KB
最終ジャッジ日時 2024-05-02 13:04:09
合計ジャッジ時間 5,600 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,332 KB
testcase_01 AC 56 ms
36,972 KB
testcase_02 AC 57 ms
37,028 KB
testcase_03 AC 69 ms
37,804 KB
testcase_04 AC 69 ms
37,856 KB
testcase_05 AC 62 ms
37,300 KB
testcase_06 AC 68 ms
37,800 KB
testcase_07 AC 58 ms
37,244 KB
testcase_08 AC 68 ms
37,536 KB
testcase_09 AC 68 ms
37,660 KB
testcase_10 AC 60 ms
37,240 KB
testcase_11 AC 61 ms
37,156 KB
testcase_12 AC 70 ms
37,556 KB
testcase_13 AC 72 ms
37,848 KB
testcase_14 AC 56 ms
37,156 KB
testcase_15 AC 56 ms
36,804 KB
testcase_16 AC 62 ms
37,028 KB
testcase_17 AC 59 ms
37,096 KB
testcase_18 AC 68 ms
37,688 KB
testcase_19 AC 78 ms
37,500 KB
testcase_20 AC 71 ms
37,984 KB
testcase_21 AC 72 ms
38,100 KB
testcase_22 AC 68 ms
37,836 KB
testcase_23 AC 54 ms
37,368 KB
testcase_24 AC 55 ms
37,192 KB
testcase_25 AC 54 ms
36,808 KB
testcase_26 AC 57 ms
37,244 KB
testcase_27 AC 54 ms
36,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int a = sc.nextInt();
        int b = sc.nextInt();
        long ans = fact(n) + MOD * 2 - fact(n - 1) * 2;
        if (a != b) {
            ans += fact(n - 2);
        }
        System.out.println(ans % MOD);
    }
    
    static long fact(int x) {
        long ans = 1;
        for (int i = 2; i <= x; i++) {
            ans *= i;
            ans %= MOD;
        }
        return ans;
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0