結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー tentententen
提出日時 2023-03-16 14:37:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 322 ms / 2,000 ms
コード長 2,235 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 91,780 KB
実行使用メモリ 43,000 KB
最終ジャッジ日時 2024-09-18 09:21:08
合計ジャッジ時間 7,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,260 KB
testcase_01 AC 52 ms
37,200 KB
testcase_02 AC 53 ms
37,216 KB
testcase_03 AC 53 ms
37,080 KB
testcase_04 AC 52 ms
37,040 KB
testcase_05 AC 53 ms
37,176 KB
testcase_06 AC 53 ms
37,268 KB
testcase_07 AC 53 ms
37,256 KB
testcase_08 AC 199 ms
40,384 KB
testcase_09 AC 54 ms
37,032 KB
testcase_10 AC 322 ms
42,580 KB
testcase_11 AC 173 ms
40,176 KB
testcase_12 AC 152 ms
39,856 KB
testcase_13 AC 176 ms
40,244 KB
testcase_14 AC 180 ms
40,048 KB
testcase_15 AC 242 ms
42,548 KB
testcase_16 AC 150 ms
40,580 KB
testcase_17 AC 148 ms
39,972 KB
testcase_18 AC 247 ms
42,296 KB
testcase_19 AC 172 ms
40,048 KB
testcase_20 AC 54 ms
37,492 KB
testcase_21 AC 218 ms
42,164 KB
testcase_22 AC 54 ms
37,308 KB
testcase_23 AC 53 ms
36,992 KB
testcase_24 AC 54 ms
37,076 KB
testcase_25 AC 312 ms
42,576 KB
testcase_26 AC 307 ms
43,000 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 q = sc.nextInt();
        long[] current = new long[n + 1];
        current[0] = 1;
        long[] next = new long[n + 1];
        for (int i = 1; i <= n; i++) {
            int x = sc.nextInt();
            for (int j = 1; j <= i; j++) {
                next[j] = current[j - 1];
            }
            for (int j = 0; j < i; j++) {
                next[j] += current[j] * (x - 1) % MOD;
                next[j] %= MOD;
            }
            long[] tmp = current;
            current = next;
            next = tmp;
            Arrays.fill(next, 0);
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            sb.append(current[sc.nextInt()]).append("\n");
        }
        System.out.print(sb);
    }
}
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