結果

問題 No.1331 Moving Penguin
ユーザー ks2mks2m
提出日時 2021-01-08 22:29:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,440 ms / 1,500 ms
コード長 1,236 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 76,580 KB
実行使用メモリ 321,476 KB
最終ジャッジ日時 2024-11-07 14:52:02
合計ジャッジ時間 56,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
46,784 KB
testcase_01 AC 53 ms
37,128 KB
testcase_02 AC 54 ms
36,824 KB
testcase_03 AC 52 ms
37,160 KB
testcase_04 AC 1,228 ms
288,700 KB
testcase_05 AC 1,198 ms
288,660 KB
testcase_06 AC 1,196 ms
288,864 KB
testcase_07 AC 1,191 ms
288,816 KB
testcase_08 AC 1,187 ms
302,536 KB
testcase_09 AC 1,196 ms
302,572 KB
testcase_10 AC 1,207 ms
302,636 KB
testcase_11 AC 1,200 ms
302,376 KB
testcase_12 AC 1,203 ms
302,556 KB
testcase_13 AC 1,190 ms
302,524 KB
testcase_14 AC 1,196 ms
302,500 KB
testcase_15 AC 1,210 ms
302,840 KB
testcase_16 AC 1,180 ms
301,892 KB
testcase_17 AC 1,200 ms
302,588 KB
testcase_18 AC 1,188 ms
302,716 KB
testcase_19 AC 1,196 ms
302,484 KB
testcase_20 AC 1,182 ms
301,904 KB
testcase_21 AC 1,202 ms
302,372 KB
testcase_22 AC 1,201 ms
302,648 KB
testcase_23 AC 1,175 ms
302,436 KB
testcase_24 AC 1,200 ms
302,708 KB
testcase_25 AC 1,195 ms
302,532 KB
testcase_26 AC 1,229 ms
288,560 KB
testcase_27 AC 1,213 ms
289,244 KB
testcase_28 AC 1,231 ms
289,048 KB
testcase_29 AC 1,244 ms
321,476 KB
testcase_30 AC 401 ms
92,848 KB
testcase_31 AC 721 ms
187,844 KB
testcase_32 AC 363 ms
94,792 KB
testcase_33 AC 516 ms
115,612 KB
testcase_34 AC 845 ms
190,176 KB
testcase_35 AC 1,329 ms
290,664 KB
testcase_36 AC 1,320 ms
290,680 KB
testcase_37 AC 1,325 ms
290,616 KB
testcase_38 AC 414 ms
109,328 KB
testcase_39 AC 1,363 ms
277,408 KB
testcase_40 AC 603 ms
130,192 KB
testcase_41 AC 1,231 ms
291,264 KB
testcase_42 AC 1,354 ms
290,672 KB
testcase_43 AC 1,356 ms
290,668 KB
testcase_44 AC 1,369 ms
290,348 KB
testcase_45 AC 1,418 ms
291,020 KB
testcase_46 AC 1,432 ms
290,364 KB
testcase_47 AC 1,440 ms
290,672 KB
testcase_48 AC 1,189 ms
312,148 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) - 1;
		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];
			dp[0][i + 1] %= mod;
			if (a[i] == 1) {
				dp[1][i + 2] += dp[0][i];
				dp[1][i + 2] %= mod;
			} else if (a[i] < rn) {
				int c = i + a[i];
				if (c < n) {
					dp[a[i]][c] += dp[0][i];
					dp[a[i]][c] %= mod;
				}
			} else {
				for (int j = i + a[i]; j < n; j += a[i]) {
					dp[0][j] += dp[0][i];
					dp[0][j] %= mod;
				}
			}
		}
		System.out.println(dp[0][n - 1]);
	}
}
0