結果

問題 No.489 株に挑戦
ユーザー mmmpppmmmppp
提出日時 2017-02-25 21:48:59
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 205 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 24,832 KB
最終ジャッジ日時 2024-06-11 15:10:43
合計ジャッジ時間 6,134 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
18,944 KB
testcase_01 AC 128 ms
15,744 KB
testcase_02 AC 76 ms
12,288 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 82 ms
12,544 KB
testcase_16 AC 224 ms
23,936 KB
testcase_17 AC 87 ms
13,440 KB
testcase_18 AC 155 ms
15,872 KB
testcase_19 AC 120 ms
15,744 KB
testcase_20 AC 188 ms
22,656 KB
testcase_21 AC 95 ms
13,952 KB
testcase_22 AC 87 ms
12,416 KB
testcase_23 AC 144 ms
15,744 KB
testcase_24 AC 223 ms
24,704 KB
testcase_25 AC 74 ms
12,032 KB
testcase_26 AC 118 ms
19,456 KB
testcase_27 AC 118 ms
19,200 KB
testcase_28 AC 74 ms
12,032 KB
testcase_29 RE -
testcase_30 AC 131 ms
19,840 KB
testcase_31 AC 147 ms
24,832 KB
testcase_32 AC 164 ms
16,000 KB
testcase_33 AC 211 ms
24,064 KB
testcase_34 AC 215 ms
21,888 KB
testcase_35 AC 127 ms
15,744 KB
testcase_36 AC 85 ms
13,184 KB
testcase_37 AC 126 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,d,K,*x=$<.read.split.map &:to_i
m=[0,0,0]
c=h=$$
n.times{|j|f=[j+d,n-1].min
a=x[j]
a>=c&&x[f]<=x[h]&&next
(j+1..f).map{|k|v=x[k]-a;v<0&&break;v>m[0]&&m=[v,j,k]}
c,h=a,f}
puts m[0]<1?0:[m[0]*K,m[1,2]*' ']
0