結果

問題 No.1331 Moving Penguin
ユーザー ks2mks2m
提出日時 2021-01-08 22:31:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,352 ms / 1,500 ms
コード長 1,136 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 76,712 KB
実行使用メモリ 321,432 KB
最終ジャッジ日時 2024-11-07 14:54:00
合計ジャッジ時間 54,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
46,476 KB
testcase_01 AC 51 ms
36,964 KB
testcase_02 AC 50 ms
36,648 KB
testcase_03 AC 53 ms
36,812 KB
testcase_04 AC 1,221 ms
288,988 KB
testcase_05 AC 1,192 ms
289,296 KB
testcase_06 AC 1,203 ms
289,204 KB
testcase_07 AC 1,196 ms
289,212 KB
testcase_08 AC 1,206 ms
302,484 KB
testcase_09 AC 1,194 ms
302,352 KB
testcase_10 AC 1,205 ms
302,280 KB
testcase_11 AC 1,195 ms
301,608 KB
testcase_12 AC 1,214 ms
302,404 KB
testcase_13 AC 1,180 ms
301,500 KB
testcase_14 AC 1,182 ms
301,504 KB
testcase_15 AC 1,209 ms
302,408 KB
testcase_16 AC 1,180 ms
301,732 KB
testcase_17 AC 1,171 ms
301,612 KB
testcase_18 AC 1,203 ms
302,264 KB
testcase_19 AC 1,172 ms
301,992 KB
testcase_20 AC 1,203 ms
302,172 KB
testcase_21 AC 1,192 ms
302,212 KB
testcase_22 AC 1,192 ms
301,564 KB
testcase_23 AC 1,199 ms
301,448 KB
testcase_24 AC 1,208 ms
301,836 KB
testcase_25 AC 1,216 ms
302,320 KB
testcase_26 AC 1,239 ms
289,028 KB
testcase_27 AC 1,242 ms
288,944 KB
testcase_28 AC 1,226 ms
289,056 KB
testcase_29 AC 1,232 ms
321,432 KB
testcase_30 AC 427 ms
93,500 KB
testcase_31 AC 726 ms
187,416 KB
testcase_32 AC 378 ms
95,304 KB
testcase_33 AC 525 ms
115,228 KB
testcase_34 AC 882 ms
189,484 KB
testcase_35 AC 1,277 ms
290,392 KB
testcase_36 AC 1,242 ms
290,584 KB
testcase_37 AC 1,252 ms
290,588 KB
testcase_38 AC 462 ms
108,636 KB
testcase_39 AC 1,352 ms
277,412 KB
testcase_40 AC 617 ms
130,204 KB
testcase_41 AC 1,231 ms
290,364 KB
testcase_42 AC 1,249 ms
290,596 KB
testcase_43 AC 1,237 ms
290,376 KB
testcase_44 AC 1,273 ms
290,280 KB
testcase_45 AC 1,270 ms
290,488 KB
testcase_46 AC 1,273 ms
290,400 KB
testcase_47 AC 1,249 ms
290,520 KB
testcase_48 AC 1,192 ms
302,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int mod = 1000000007;
		int rn = (int) Math.sqrt(n);
		if (rn < 2) {
			rn = 2;
		}
		long[][] dp = new long[rn][n + 2];
		dp[0][0] = 1;
		for (int i = 0; i < n; i++) {
			for (int j = 1; j < rn; j++) {
				int p = i - j;
				if (p < 0) {
					break;
				}
				dp[j][i] += dp[j][p];
				dp[j][i] %= mod;
			}
			for (int j = 1; j < rn; j++) {
				dp[0][i] += dp[j][i];
			}
			dp[0][i] %= mod;

			dp[0][i + 1] += dp[0][i];
			if (a[i] == 1) {
				dp[1][i + 2] += dp[0][i];
			} else if (a[i] < rn) {
				int c = i + a[i];
				if (c < n) {
					dp[a[i]][c] += dp[0][i];
				}
			} else {
				for (int j = i + a[i]; j < n; j += a[i]) {
					dp[0][j] += dp[0][i];
				}
			}
		}
		System.out.println(dp[0][n - 1]);
	}
}
0