結果

問題 No.409 ダイエット
ユーザー cielciel
提出日時 2016-08-03 15:58:00
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 150 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-11-06 23:44:13
合計ジャッジ時間 31,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
17,280 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 89 ms
12,032 KB
testcase_03 AC 88 ms
12,032 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 93 ms
12,160 KB
testcase_10 AC 94 ms
12,160 KB
testcase_11 AC 95 ms
12,288 KB
testcase_12 AC 92 ms
12,288 KB
testcase_13 AC 90 ms
12,288 KB
testcase_14 AC 91 ms
12,160 KB
testcase_15 AC 89 ms
12,160 KB
testcase_16 AC 88 ms
12,160 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 91 ms
12,032 KB
testcase_19 AC 91 ms
12,160 KB
testcase_20 AC 90 ms
12,288 KB
testcase_21 AC 90 ms
12,032 KB
testcase_22 AC 91 ms
12,032 KB
testcase_23 AC 90 ms
12,160 KB
testcase_24 AC 90 ms
12,032 KB
testcase_25 AC 89 ms
12,160 KB
testcase_26 AC 92 ms
12,288 KB
testcase_27 AC 91 ms
12,288 KB
testcase_28 AC 89 ms
12,032 KB
testcase_29 AC 90 ms
12,032 KB
testcase_30 AC 90 ms
12,160 KB
testcase_31 AC 91 ms
12,160 KB
testcase_32 AC 90 ms
12,160 KB
testcase_33 AC 90 ms
12,032 KB
testcase_34 AC 90 ms
12,160 KB
testcase_35 AC 897 ms
40,064 KB
testcase_36 AC 1,071 ms
40,576 KB
testcase_37 AC 1,007 ms
40,320 KB
testcase_38 AC 998 ms
40,192 KB
testcase_39 AC 946 ms
39,808 KB
testcase_40 AC 1,071 ms
40,320 KB
testcase_41 AC 1,213 ms
40,832 KB
testcase_42 AC 1,149 ms
40,576 KB
testcase_43 AC 988 ms
40,064 KB
testcase_44 AC 898 ms
39,808 KB
testcase_45 AC 1,074 ms
40,320 KB
testcase_46 AC 1,096 ms
40,448 KB
testcase_47 AC 1,076 ms
40,448 KB
testcase_48 AC 934 ms
39,808 KB
testcase_49 AC 1,145 ms
40,704 KB
testcase_50 AC 1,053 ms
40,448 KB
testcase_51 AC 1,084 ms
40,576 KB
testcase_52 AC 1,210 ms
40,704 KB
testcase_53 AC 1,141 ms
40,704 KB
testcase_54 AC 898 ms
39,808 KB
testcase_55 TLE -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
N,A,B,W,*D=`dd`.split.map(&:to_i)
D<<0
R=[W]
1.upto(N+1){|k|
	R<<k.times.map{|i|D[k-1]+R[i]-(k-i-1)*A+(k-i-1)*(k-i)/2*B}.min
}
p R[-1]
0