結果

問題 No.1331 Moving Penguin
ユーザー yuruhiyayuruhiya
提出日時 2021-01-09 18:33:15
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 348 bytes
コンパイル時間 10,886 ms
コンパイル使用メモリ 295,520 KB
実行使用メモリ 10,916 KB
最終ジャッジ日時 2024-06-30 21:56:04
合計ジャッジ時間 28,241 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 4 ms
6,816 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 RE -
testcase_05 AC 480 ms
9,216 KB
testcase_06 AC 472 ms
9,328 KB
testcase_07 AC 480 ms
8,832 KB
testcase_08 AC 474 ms
8,832 KB
testcase_09 AC 474 ms
8,704 KB
testcase_10 AC 475 ms
8,704 KB
testcase_11 AC 474 ms
8,704 KB
testcase_12 AC 480 ms
8,704 KB
testcase_13 AC 474 ms
8,832 KB
testcase_14 AC 475 ms
8,704 KB
testcase_15 AC 472 ms
8,704 KB
testcase_16 AC 474 ms
8,832 KB
testcase_17 AC 476 ms
8,704 KB
testcase_18 AC 483 ms
10,184 KB
testcase_19 AC 477 ms
8,704 KB
testcase_20 AC 470 ms
8,704 KB
testcase_21 AC 475 ms
8,704 KB
testcase_22 AC 482 ms
8,704 KB
testcase_23 AC 480 ms
8,704 KB
testcase_24 AC 472 ms
8,704 KB
testcase_25 AC 472 ms
8,704 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 469 ms
10,624 KB
testcase_36 AC 484 ms
10,496 KB
testcase_37 AC 486 ms
10,496 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 477 ms
10,528 KB
testcase_42 AC 482 ms
10,496 KB
testcase_43 AC 480 ms
10,496 KB
testcase_44 AC 476 ms
10,624 KB
testcase_45 AC 476 ms
10,916 KB
testcase_46 AC 477 ms
10,664 KB
testcase_47 AC 486 ms
10,496 KB
testcase_48 AC 487 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=10**9+7
m=512
n=read_line.to_i
a=read_line.split.map(&.to_i)
b=(0...m).map{|i|[0i64]*i}
dp=[0i64]*n
dp[0]=1
n.times{|i|
	(1...m).each{|x|dp[i]=(dp[i]+b[x][i% x])%M}
	if a[i]<m
		b[a[i]][i%a[i]]=(b[a[i]][i%a[i]]+dp[i])%M
	else
		j=i
		while j<n
			j+=a[i]
			dp[j]=(dp[j]+dp[i])%M
		end
	end
	dp[i+1]=(dp[i+1]+dp[i])%M if i+1<n&&a[i]>1
}
p dp[n-1]
0