結果

問題 No.1066 #いろいろな色 / Red and Blue and more various colors (Easy)
ユーザー htensaihtensai
提出日時 2020-06-04 13:03:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 3,190 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 58,860 KB
最終ジャッジ日時 2024-11-28 16:40:18
合計ジャッジ時間 10,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,704 KB
testcase_01 AC 129 ms
53,960 KB
testcase_02 AC 115 ms
52,560 KB
testcase_03 AC 130 ms
53,772 KB
testcase_04 AC 132 ms
53,848 KB
testcase_05 AC 131 ms
53,840 KB
testcase_06 AC 135 ms
54,064 KB
testcase_07 AC 129 ms
53,836 KB
testcase_08 AC 367 ms
58,852 KB
testcase_09 AC 141 ms
53,932 KB
testcase_10 AC 433 ms
58,748 KB
testcase_11 AC 286 ms
58,056 KB
testcase_12 AC 274 ms
57,484 KB
testcase_13 AC 350 ms
58,608 KB
testcase_14 AC 347 ms
58,596 KB
testcase_15 AC 397 ms
58,856 KB
testcase_16 AC 251 ms
57,096 KB
testcase_17 AC 263 ms
57,120 KB
testcase_18 AC 401 ms
58,628 KB
testcase_19 AC 294 ms
57,848 KB
testcase_20 AC 137 ms
53,712 KB
testcase_21 AC 373 ms
58,860 KB
testcase_22 AC 139 ms
41,916 KB
testcase_23 AC 123 ms
41,028 KB
testcase_24 AC 112 ms
40,136 KB
testcase_25 AC 389 ms
46,640 KB
testcase_26 AC 421 ms
47,572 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[] arr = new int[n + 1];
		for (int i = 1; i <= n; i++) {
		    arr[i] = sc.nextInt();
		}
		long[] dp = new long[n + 1];
		dp[0] = 1;
		for (int i = 1; i <= n; i++) {
		    for (int j = i;  j >= 1; j--) {
		        dp[j] = dp[j] * (arr[i] - 1) + dp[j - 1];
		        dp[j] %= MOD;
		    }
		    dp[0] = dp[0] * (arr[i] - 1);
		    dp[0] %= MOD;
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < q; i++) {
		    sb.append(dp[sc.nextInt()]).append("\n");
		}
		System.out.print(sb);
	}
}
0