結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー tentententen
提出日時 2020-08-20 10:57:12
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 807 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 77,320 KB
実行使用メモリ 239,384 KB
最終ジャッジ日時 2024-10-13 04:26:17
合計ジャッジ時間 10,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,992 KB
testcase_01 AC 127 ms
54,088 KB
testcase_02 AC 112 ms
52,932 KB
testcase_03 AC 114 ms
52,836 KB
testcase_04 AC 126 ms
53,768 KB
testcase_05 AC 131 ms
54,104 KB
testcase_06 AC 129 ms
54,012 KB
testcase_07 AC 124 ms
53,848 KB
testcase_08 AC 383 ms
117,868 KB
testcase_09 AC 136 ms
54,184 KB
testcase_10 MLE -
testcase_11 AC 313 ms
87,828 KB
testcase_12 AC 318 ms
79,876 KB
testcase_13 AC 317 ms
87,824 KB
testcase_14 AC 320 ms
89,988 KB
testcase_15 MLE -
testcase_16 AC 257 ms
67,352 KB
testcase_17 AC 267 ms
70,544 KB
testcase_18 MLE -
testcase_19 AC 324 ms
87,660 KB
testcase_20 AC 132 ms
54,332 KB
testcase_21 MLE -
testcase_22 AC 136 ms
54,412 KB
testcase_23 AC 103 ms
52,312 KB
testcase_24 AC 122 ms
54,340 KB
testcase_25 MLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int q = sc.nextInt();
        int[][] dp = new int[n + 1][n + 1];
        dp[0][0] = 1;
        for (int i = 1; i <= n; i++) {
            long x = sc.nextInt();
            for (int j = 0; j < i; j++) {
                dp[i][j] += (int)(dp[i - 1][j] * (x - 1) % MOD);
                dp[i][j] %= MOD;
                dp[i][j + 1] += dp[i - 1][j];
                dp[i][j + 1] %= MOD;
            }
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            sb.append(dp[n][sc.nextInt()]).append("\n");
        }
        System.out.print(sb);
    }
} 
0