結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー tentententen
提出日時 2021-11-05 12:50:35
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,609 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 77,980 KB
実行使用メモリ 378,756 KB
最終ジャッジ日時 2024-11-06 02:31:58
合計ジャッジ時間 8,456 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,244 KB
testcase_01 AC 58 ms
50,424 KB
testcase_02 AC 56 ms
50,256 KB
testcase_03 AC 57 ms
50,244 KB
testcase_04 AC 55 ms
50,372 KB
testcase_05 AC 56 ms
50,432 KB
testcase_06 AC 55 ms
50,332 KB
testcase_07 AC 55 ms
50,444 KB
testcase_08 MLE -
testcase_09 AC 57 ms
50,320 KB
testcase_10 MLE -
testcase_11 AC 213 ms
113,572 KB
testcase_12 AC 166 ms
93,092 KB
testcase_13 AC 214 ms
114,936 KB
testcase_14 AC 222 ms
113,524 KB
testcase_15 MLE -
testcase_16 AC 149 ms
76,072 KB
testcase_17 AC 159 ms
86,132 KB
testcase_18 MLE -
testcase_19 AC 186 ms
114,660 KB
testcase_20 AC 57 ms
50,384 KB
testcase_21 MLE -
testcase_22 AC 57 ms
50,500 KB
testcase_23 AC 55 ms
50,352 KB
testcase_24 AC 55 ms
50,404 KB
testcase_25 MLE -
testcase_26 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

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 q = sc.nextInt();
        long[][] dp = new long[n + 1][n + 1];
        dp[0][0] = 1;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            for (int j = 0; j <= i; j++) {
                dp[i + 1][j] += dp[i][j] * (x - 1) % MOD;
                dp[i + 1][j] %= MOD;
                dp[i + 1][j + 1] += dp[i][j];
                dp[i + 1][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);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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 String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0