結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
36,952 KB
testcase_01 AC 63 ms
36,884 KB
testcase_02 AC 65 ms
36,880 KB
testcase_03 AC 73 ms
37,368 KB
testcase_04 AC 78 ms
37,596 KB
testcase_05 AC 69 ms
37,168 KB
testcase_06 AC 78 ms
37,656 KB
testcase_07 AC 63 ms
37,184 KB
testcase_08 AC 71 ms
36,744 KB
testcase_09 AC 71 ms
37,512 KB
testcase_10 AC 63 ms
36,972 KB
testcase_11 AC 65 ms
36,856 KB
testcase_12 AC 71 ms
37,376 KB
testcase_13 AC 74 ms
37,492 KB
testcase_14 AC 62 ms
36,776 KB
testcase_15 AC 62 ms
37,056 KB
testcase_16 AC 66 ms
37,044 KB
testcase_17 AC 62 ms
36,852 KB
testcase_18 AC 78 ms
37,796 KB
testcase_19 AC 71 ms
37,456 KB
testcase_20 AC 75 ms
37,584 KB
testcase_21 AC 74 ms
37,632 KB
testcase_22 AC 72 ms
37,168 KB
testcase_23 AC 60 ms
36,884 KB
testcase_24 AC 58 ms
37,052 KB
testcase_25 AC 57 ms
37,060 KB
testcase_26 AC 59 ms
36,900 KB
testcase_27 AC 63 ms
36,848 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