結果

問題 No.1331 Moving Penguin
ユーザー ks2mks2m
提出日時 2021-01-08 22:27:14
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,201 bytes
コンパイル時間 3,824 ms
コンパイル使用メモリ 76,484 KB
実行使用メモリ 321,272 KB
最終ジャッジ日時 2024-11-16 13:17:04
合計ジャッジ時間 58,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
46,588 KB
testcase_01 RE -
testcase_02 AC 52 ms
36,800 KB
testcase_03 AC 51 ms
36,544 KB
testcase_04 AC 1,243 ms
288,972 KB
testcase_05 AC 1,206 ms
289,308 KB
testcase_06 AC 1,206 ms
289,192 KB
testcase_07 AC 1,211 ms
289,256 KB
testcase_08 AC 1,213 ms
302,028 KB
testcase_09 AC 1,195 ms
301,684 KB
testcase_10 AC 1,180 ms
301,404 KB
testcase_11 AC 1,174 ms
301,648 KB
testcase_12 AC 1,219 ms
302,180 KB
testcase_13 AC 1,217 ms
302,700 KB
testcase_14 AC 1,228 ms
302,328 KB
testcase_15 AC 1,228 ms
302,480 KB
testcase_16 AC 1,162 ms
301,560 KB
testcase_17 AC 1,191 ms
302,352 KB
testcase_18 AC 1,205 ms
302,120 KB
testcase_19 AC 1,218 ms
302,212 KB
testcase_20 AC 1,201 ms
301,964 KB
testcase_21 AC 1,211 ms
302,360 KB
testcase_22 AC 1,211 ms
302,352 KB
testcase_23 AC 1,193 ms
301,804 KB
testcase_24 AC 1,180 ms
301,564 KB
testcase_25 AC 1,184 ms
301,752 KB
testcase_26 AC 1,223 ms
289,136 KB
testcase_27 AC 1,210 ms
288,928 KB
testcase_28 AC 1,216 ms
288,660 KB
testcase_29 AC 1,221 ms
321,272 KB
testcase_30 AC 414 ms
92,660 KB
testcase_31 AC 728 ms
187,416 KB
testcase_32 AC 367 ms
94,400 KB
testcase_33 AC 515 ms
115,384 KB
testcase_34 AC 861 ms
189,932 KB
testcase_35 AC 1,306 ms
290,424 KB
testcase_36 AC 1,311 ms
290,420 KB
testcase_37 AC 1,310 ms
290,488 KB
testcase_38 AC 440 ms
108,728 KB
testcase_39 AC 1,388 ms
277,628 KB
testcase_40 AC 626 ms
130,436 KB
testcase_41 AC 1,197 ms
290,140 KB
testcase_42 AC 1,334 ms
290,428 KB
testcase_43 AC 1,329 ms
290,440 KB
testcase_44 AC 1,323 ms
290,416 KB
testcase_45 AC 1,429 ms
290,404 KB
testcase_46 AC 1,452 ms
290,408 KB
testcase_47 AC 1,462 ms
290,472 KB
testcase_48 AC 1,179 ms
301,816 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);
		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