結果

問題 No.489 株に挑戦
ユーザー mmmpppmmmppp
提出日時 2017-02-25 21:31:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 229 ms / 1,000 ms
コード長 264 bytes
コンパイル時間 39 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-07-19 23:24:43
合計ジャッジ時間 6,073 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
18,560 KB
testcase_01 AC 145 ms
15,872 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 76 ms
12,032 KB
testcase_07 AC 75 ms
12,160 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 AC 78 ms
12,032 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 80 ms
12,288 KB
testcase_12 AC 80 ms
12,032 KB
testcase_13 AC 78 ms
12,288 KB
testcase_14 AC 81 ms
12,160 KB
testcase_15 AC 89 ms
12,416 KB
testcase_16 AC 218 ms
20,864 KB
testcase_17 AC 88 ms
13,312 KB
testcase_18 AC 158 ms
15,616 KB
testcase_19 AC 131 ms
15,488 KB
testcase_20 AC 198 ms
20,992 KB
testcase_21 AC 111 ms
13,696 KB
testcase_22 AC 100 ms
12,672 KB
testcase_23 AC 155 ms
15,872 KB
testcase_24 AC 229 ms
22,912 KB
testcase_25 AC 81 ms
12,160 KB
testcase_26 AC 203 ms
21,888 KB
testcase_27 AC 124 ms
19,456 KB
testcase_28 AC 75 ms
12,032 KB
testcase_29 AC 76 ms
12,160 KB
testcase_30 AC 138 ms
19,968 KB
testcase_31 AC 156 ms
22,272 KB
testcase_32 AC 170 ms
15,744 KB
testcase_33 AC 212 ms
22,400 KB
testcase_34 AC 225 ms
20,480 KB
testcase_35 AC 128 ms
15,104 KB
testcase_36 AC 95 ms
13,184 KB
testcase_37 AC 133 ms
16,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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