結果

問題 No.1331 Moving Penguin
ユーザー yuruhiyayuruhiya
提出日時 2021-01-09 18:31:13
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 342 bytes
コンパイル時間 11,315 ms
コンパイル使用メモリ 295,812 KB
実行使用メモリ 11,048 KB
最終ジャッジ日時 2024-06-30 21:55:16
合計ジャッジ時間 26,951 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 RE -
testcase_05 AC 436 ms
8,960 KB
testcase_06 AC 435 ms
7,936 KB
testcase_07 AC 434 ms
7,808 KB
testcase_08 AC 433 ms
7,808 KB
testcase_09 AC 433 ms
8,064 KB
testcase_10 AC 433 ms
7,808 KB
testcase_11 AC 431 ms
7,808 KB
testcase_12 AC 431 ms
7,936 KB
testcase_13 AC 435 ms
8,064 KB
testcase_14 AC 434 ms
7,936 KB
testcase_15 AC 433 ms
7,808 KB
testcase_16 AC 433 ms
7,936 KB
testcase_17 AC 431 ms
7,936 KB
testcase_18 AC 435 ms
7,808 KB
testcase_19 AC 433 ms
7,936 KB
testcase_20 AC 435 ms
7,936 KB
testcase_21 AC 437 ms
7,936 KB
testcase_22 AC 435 ms
7,936 KB
testcase_23 AC 433 ms
8,064 KB
testcase_24 AC 432 ms
7,936 KB
testcase_25 AC 427 ms
7,936 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 434 ms
10,664 KB
testcase_36 AC 436 ms
9,344 KB
testcase_37 AC 435 ms
9,344 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 434 ms
9,344 KB
testcase_42 AC 436 ms
9,344 KB
testcase_43 AC 433 ms
9,344 KB
testcase_44 AC 440 ms
11,048 KB
testcase_45 AC 435 ms
9,472 KB
testcase_46 AC 438 ms
9,344 KB
testcase_47 AC 439 ms
9,472 KB
testcase_48 AC 440 ms
7,936 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|[0]*i}
dp=[0]*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