結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
46,148 KB
testcase_01 AC 53 ms
36,836 KB
testcase_02 AC 50 ms
36,860 KB
testcase_03 AC 51 ms
36,996 KB
testcase_04 AC 1,207 ms
287,632 KB
testcase_05 AC 1,219 ms
287,908 KB
testcase_06 AC 1,212 ms
287,648 KB
testcase_07 AC 1,207 ms
287,448 KB
testcase_08 AC 1,158 ms
301,348 KB
testcase_09 AC 1,215 ms
302,180 KB
testcase_10 AC 1,241 ms
302,148 KB
testcase_11 AC 1,183 ms
301,144 KB
testcase_12 AC 1,202 ms
301,888 KB
testcase_13 AC 1,189 ms
301,440 KB
testcase_14 AC 1,181 ms
301,464 KB
testcase_15 AC 1,146 ms
301,444 KB
testcase_16 AC 1,187 ms
301,408 KB
testcase_17 AC 1,158 ms
301,644 KB
testcase_18 AC 1,203 ms
301,996 KB
testcase_19 AC 1,152 ms
301,320 KB
testcase_20 AC 1,168 ms
301,712 KB
testcase_21 AC 1,202 ms
301,892 KB
testcase_22 AC 1,205 ms
302,100 KB
testcase_23 AC 1,196 ms
302,016 KB
testcase_24 AC 1,200 ms
301,968 KB
testcase_25 AC 1,205 ms
302,148 KB
testcase_26 AC 1,216 ms
287,496 KB
testcase_27 AC 1,217 ms
287,872 KB
testcase_28 AC 1,216 ms
287,548 KB
testcase_29 AC 1,246 ms
321,492 KB
testcase_30 AC 409 ms
92,944 KB
testcase_31 AC 732 ms
187,512 KB
testcase_32 AC 361 ms
94,252 KB
testcase_33 AC 551 ms
114,552 KB
testcase_34 AC 857 ms
189,400 KB
testcase_35 AC 1,239 ms
290,384 KB
testcase_36 AC 1,225 ms
290,312 KB
testcase_37 AC 1,230 ms
290,268 KB
testcase_38 AC 447 ms
108,596 KB
testcase_39 AC 1,326 ms
275,860 KB
testcase_40 AC 615 ms
129,668 KB
testcase_41 AC 1,220 ms
290,340 KB
testcase_42 AC 1,253 ms
290,312 KB
testcase_43 AC 1,283 ms
290,496 KB
testcase_44 AC 1,259 ms
290,192 KB
testcase_45 AC 1,284 ms
290,512 KB
testcase_46 AC 1,293 ms
290,272 KB
testcase_47 AC 1,271 ms
290,580 KB
testcase_48 AC 1,187 ms
301,516 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) - 2;
		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