結果

問題 No.489 株に挑戦
ユーザー smz_8110smz_8110
提出日時 2017-04-11 16:34:00
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-07-18 09:03:51
合計ジャッジ時間 5,692 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
13,056 KB
testcase_01 AC 125 ms
12,672 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 87 ms
12,416 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 87 ms
12,416 KB
testcase_06 AC 88 ms
12,416 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 88 ms
12,160 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 86 ms
12,416 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 AC 87 ms
12,288 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 86 ms
12,160 KB
testcase_15 AC 91 ms
12,288 KB
testcase_16 AC 149 ms
12,928 KB
testcase_17 AC 101 ms
12,416 KB
testcase_18 AC 124 ms
12,800 KB
testcase_19 AC 117 ms
12,672 KB
testcase_20 AC 152 ms
13,184 KB
testcase_21 AC 106 ms
12,416 KB
testcase_22 AC 94 ms
12,288 KB
testcase_23 AC 127 ms
12,800 KB
testcase_24 AC 160 ms
13,312 KB
testcase_25 AC 85 ms
12,160 KB
testcase_26 AC 156 ms
12,928 KB
testcase_27 WA -
testcase_28 AC 86 ms
12,288 KB
testcase_29 AC 89 ms
12,288 KB
testcase_30 AC 158 ms
12,928 KB
testcase_31 AC 158 ms
12,928 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 98 ms
12,288 KB
testcase_37 AC 129 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N,D,K=gets.split.map &:to_i
a=N.times.map{gets.to_i}
c=1
min=a[0]
v=0
b=[a[0]]
x=y=z=0
i,j=0,1
while j<a.size
  if j-i>D
    if a[i]==min
      c-=1
      if c==0
        b=a[i+1,D]
        min=b.min
        c=b.count(min)
        v=b.index(min)
      end
    end
    i+=1
  end
  if a[j]<min
    min=a[j]
    c=1
    v=j
  elsif a[j]==min
    c+=1
  elsif a[j]-min>z
    z=a[j]-min
    x=v
    y=j
  end
  j+=1
end
p z*K
puts "#{x} #{y}" if z>0
0