結果

問題 No.1331 Moving Penguin
ユーザー yuruhiyayuruhiya
提出日時 2021-01-09 18:37:19
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 11,203 ms
コンパイル使用メモリ 295,880 KB
実行使用メモリ 10,668 KB
最終ジャッジ日時 2024-06-30 21:57:24
合計ジャッジ時間 31,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 471 ms
10,368 KB
testcase_05 AC 472 ms
9,216 KB
testcase_06 AC 471 ms
9,216 KB
testcase_07 AC 440 ms
8,832 KB
testcase_08 AC 475 ms
8,704 KB
testcase_09 AC 475 ms
8,704 KB
testcase_10 AC 475 ms
8,704 KB
testcase_11 AC 478 ms
8,704 KB
testcase_12 AC 475 ms
8,832 KB
testcase_13 AC 477 ms
8,704 KB
testcase_14 AC 469 ms
8,704 KB
testcase_15 AC 470 ms
8,704 KB
testcase_16 AC 471 ms
8,704 KB
testcase_17 AC 482 ms
8,704 KB
testcase_18 AC 470 ms
8,704 KB
testcase_19 AC 469 ms
8,704 KB
testcase_20 AC 466 ms
8,704 KB
testcase_21 AC 473 ms
8,704 KB
testcase_22 AC 472 ms
8,704 KB
testcase_23 AC 473 ms
8,832 KB
testcase_24 AC 468 ms
8,832 KB
testcase_25 AC 482 ms
8,704 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 477 ms
10,240 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 474 ms
10,496 KB
testcase_36 AC 477 ms
10,496 KB
testcase_37 AC 480 ms
10,496 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 477 ms
10,240 KB
testcase_42 AC 469 ms
10,496 KB
testcase_43 AC 477 ms
10,496 KB
testcase_44 AC 471 ms
10,668 KB
testcase_45 AC 476 ms
10,496 KB
testcase_46 AC 482 ms
10,496 KB
testcase_47 AC 477 ms
10,624 KB
testcase_48 AC 471 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]+=b[x][i% x]%=M}
	if a[i]<m
		b[a[i]][i%a[i]]+=dp[i]%=M
	else
		j=i+a[i]
		while j<n
			dp[j]+=dp[i]%=M
			j+=a[i]
		end
	end
	dp[i+1]+=dp[i]%=M if i+1<n&&a[i]>1
}
p dp[n-1]
0