結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー tenten
提出日時 2021-11-05 12:55:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 1,669 bytes
コンパイル時間 2,825 ms
コンパイル使用メモリ 77,672 KB
実行使用メモリ 57,108 KB
最終ジャッジ日時 2024-11-06 02:39:01
合計ジャッジ時間 7,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

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();
        int[] current = new int[1];
        current[0] = 1;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            int[] next = new int[i + 2];
            for (int j = 0; j <= i; j++) {
                next[j] += (int)(current[j] * (long)(x - 1) % MOD);
                next[j] %= MOD;
                next[j + 1] += current[j];
                next[j + 1] %= MOD;
            }
            current = next;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            sb.append(current[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