結果
問題 | No.489 株に挑戦 |
ユーザー | smz_8110 |
提出日時 | 2017-04-11 16:28:33 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 443 bytes |
コンパイル時間 | 55 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-07-18 09:03:42 |
合計ジャッジ時間 | 5,447 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 77 ms
12,288 KB |
testcase_03 | AC | 74 ms
12,160 KB |
testcase_04 | AC | 72 ms
12,288 KB |
testcase_05 | AC | 72 ms
12,160 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 74 ms
12,160 KB |
testcase_09 | AC | 74 ms
12,288 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 73 ms
12,288 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 122 ms
12,672 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 128 ms
13,312 KB |
testcase_21 | AC | 94 ms
12,544 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 74 ms
12,288 KB |
testcase_26 | AC | 130 ms
13,056 KB |
testcase_27 | WA | - |
testcase_28 | AC | 73 ms
12,288 KB |
testcase_29 | AC | 72 ms
12,416 KB |
testcase_30 | AC | 138 ms
12,928 KB |
testcase_31 | AC | 136 ms
12,928 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 84 ms
12,416 KB |
testcase_37 | AC | 107 ms
12,544 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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 elsif 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