結果

問題 No.2299 Antitypoglycemia
ユーザー tentententen
提出日時 2024-07-31 09:59:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,572 bytes
コンパイル時間 2,488 ms
コンパイル使用メモリ 79,188 KB
実行使用メモリ 51,068 KB
最終ジャッジ日時 2024-07-31 09:59:07
合計ジャッジ時間 5,686 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,184 KB
testcase_01 AC 53 ms
50,416 KB
testcase_02 AC 54 ms
49,852 KB
testcase_03 AC 65 ms
51,056 KB
testcase_04 AC 66 ms
50,752 KB
testcase_05 AC 61 ms
50,548 KB
testcase_06 AC 67 ms
50,900 KB
testcase_07 AC 56 ms
50,324 KB
testcase_08 AC 74 ms
50,808 KB
testcase_09 AC 65 ms
50,876 KB
testcase_10 AC 56 ms
50,156 KB
testcase_11 AC 57 ms
50,260 KB
testcase_12 AC 64 ms
51,044 KB
testcase_13 AC 76 ms
51,068 KB
testcase_14 AC 52 ms
50,388 KB
testcase_15 AC 52 ms
50,260 KB
testcase_16 AC 56 ms
49,968 KB
testcase_17 AC 55 ms
50,164 KB
testcase_18 AC 65 ms
50,960 KB
testcase_19 AC 65 ms
50,776 KB
testcase_20 AC 76 ms
50,772 KB
testcase_21 AC 68 ms
50,808 KB
testcase_22 AC 67 ms
51,044 KB
testcase_23 AC 52 ms
50,292 KB
testcase_24 AC 52 ms
50,060 KB
testcase_25 AC 52 ms
50,268 KB
testcase_26 AC 52 ms
50,032 KB
testcase_27 AC 53 ms
50,440 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 - fact(n - 1) * 2 % MOD)) % MOD;
        if (a != b) {
            ans += fact(n - 2);
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    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