結果

問題 No.616 へんなソート
ユーザー cielciel
提出日時 2017-12-26 00:48:44
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 228 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 62,236 KB
最終ジャッジ日時 2024-05-10 02:27:50
合計ジャッジ時間 9,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
19,360 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 93 ms
12,160 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 91 ms
12,288 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 AC 96 ms
12,160 KB
testcase_09 AC 103 ms
12,288 KB
testcase_10 AC 89 ms
12,160 KB
testcase_11 AC 91 ms
12,416 KB
testcase_12 AC 124 ms
12,544 KB
testcase_13 AC 1,846 ms
31,616 KB
testcase_14 AC 127 ms
12,672 KB
testcase_15 AC 91 ms
12,160 KB
testcase_16 AC 96 ms
12,160 KB
testcase_17 AC 953 ms
28,032 KB
testcase_18 AC 194 ms
13,824 KB
testcase_19 AC 226 ms
14,592 KB
testcase_20 AC 97 ms
12,160 KB
testcase_21 AC 95 ms
12,160 KB
testcase_22 AC 125 ms
12,544 KB
testcase_23 AC 89 ms
12,160 KB
testcase_24 AC 88 ms
12,160 KB
testcase_25 AC 91 ms
12,288 KB
testcase_26 AC 87 ms
12,160 KB
testcase_27 AC 90 ms
12,032 KB
testcase_28 TLE -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

M=10**9+7
n,k=gets.split.map &:to_i
a=[1]+[0]*-~k
n.times{|i|
	b=[0]*(k+2)
	(0..k).each{|j|
		b[j]=(b[j]+a[j])%M
		b[j+[i,k-j].min+1]=(b[j+[i,k-j].min+1]-a[j])%M
	}
	(0..k).each{|j|b[j+1]=(b[j+1]+b[j])%M}
	a=b
}
p a.reduce(:+)%M
0