結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー tentententen
提出日時 2020-08-20 11:22:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 62,944 KB
最終ジャッジ日時 2024-10-13 05:03:59
合計ジャッジ時間 10,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,912 KB
testcase_01 AC 123 ms
53,912 KB
testcase_02 AC 120 ms
53,860 KB
testcase_03 AC 125 ms
54,024 KB
testcase_04 AC 111 ms
52,956 KB
testcase_05 AC 130 ms
53,916 KB
testcase_06 AC 125 ms
54,016 KB
testcase_07 AC 125 ms
54,004 KB
testcase_08 AC 374 ms
59,176 KB
testcase_09 AC 145 ms
53,996 KB
testcase_10 AC 519 ms
59,592 KB
testcase_11 AC 340 ms
58,744 KB
testcase_12 AC 326 ms
58,892 KB
testcase_13 AC 331 ms
58,868 KB
testcase_14 AC 354 ms
59,068 KB
testcase_15 AC 459 ms
59,752 KB
testcase_16 AC 277 ms
57,780 KB
testcase_17 AC 298 ms
58,132 KB
testcase_18 AC 442 ms
59,312 KB
testcase_19 AC 333 ms
59,144 KB
testcase_20 AC 138 ms
54,220 KB
testcase_21 AC 392 ms
58,308 KB
testcase_22 AC 141 ms
53,984 KB
testcase_23 AC 124 ms
53,848 KB
testcase_24 AC 123 ms
53,784 KB
testcase_25 AC 515 ms
62,944 KB
testcase_26 AC 495 ms
59,324 KB
権限があれば一括ダウンロードができます

ソースコード

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];
        dp[0] = 1;
        for (int i = 1; i <= n; i++) {
            long x = sc.nextInt();
            for (int j = i - 1; j >= 0; j--) {
                dp[j + 1] += dp[j];
                dp[j + 1] %= MOD;
                dp[j] = (int)(dp[j] * (x - 1) % MOD);
                dp[j] %= MOD;
            }
        }
        for (int i = 0; i < q; i++) {
            System.out.println(dp[sc.nextInt()]);
        }
    }
} 
0