結果

問題 No.2530 Yellow Cards
ユーザー tentententen
提出日時 2023-11-07 15:05:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 2,438 bytes
コンパイル時間 7,875 ms
コンパイル使用メモリ 90,012 KB
実行使用メモリ 251,276 KB
最終ジャッジ日時 2023-11-07 15:06:18
合計ジャッジ時間 15,430 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,004 KB
testcase_01 AC 53 ms
53,988 KB
testcase_02 AC 55 ms
53,992 KB
testcase_03 AC 59 ms
53,972 KB
testcase_04 AC 52 ms
53,996 KB
testcase_05 AC 54 ms
53,984 KB
testcase_06 AC 55 ms
53,984 KB
testcase_07 AC 522 ms
249,748 KB
testcase_08 AC 548 ms
249,728 KB
testcase_09 AC 519 ms
249,724 KB
testcase_10 AC 523 ms
249,696 KB
testcase_11 AC 520 ms
249,024 KB
testcase_12 AC 520 ms
251,276 KB
testcase_13 AC 515 ms
249,244 KB
testcase_14 AC 365 ms
200,044 KB
testcase_15 AC 273 ms
139,800 KB
testcase_16 AC 273 ms
144,132 KB
testcase_17 AC 434 ms
238,824 KB
testcase_18 AC 203 ms
115,992 KB
testcase_19 AC 110 ms
68,020 KB
testcase_20 AC 121 ms
79,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
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 k = sc.nextInt();
        long div = pow(n, MOD - 2);
        long[][] dp = new long[k + 1][n + 1];
        dp[0][0] = 1;
        for (int i = 1; i <= k; i++) {
            for (int j = 0; j <= n; j++) {
                if (j > 0) {
                    dp[i][j - 1] += dp[i - 1][j] * j % MOD * div % MOD;
                    dp[i][j - 1] %= MOD;
                }
                if (j < n) {
                    dp[i][j + 1] += dp[i - 1][j] * (n - j) % MOD * div % MOD;
                }
            }
        }
        long ans = 0;
        for (int i = 0; i <= n && i <= k; i++) {
            ans += (n + (k - i) / 2) * dp[k][i] % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }

    static long pow(long x, long p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0