結果

問題 No.59 鉄道の旅
ユーザー gigurururugigurururu
提出日時 2014-11-07 00:14:44
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,059 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-12-24 20:10:47
合計ジャッジ時間 3,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 84 ms
12,160 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 340 ms
12,288 KB
testcase_05 AC 84 ms
12,288 KB
testcase_06 AC 82 ms
12,288 KB
testcase_07 AC 81 ms
12,288 KB
testcase_08 AC 103 ms
12,288 KB
testcase_09 AC 101 ms
12,288 KB
testcase_10 AC 100 ms
12,416 KB
testcase_11 AC 103 ms
12,288 KB
testcase_12 AC 225 ms
12,160 KB
testcase_13 AC 470 ms
12,672 KB
testcase_14 AC 1,059 ms
12,928 KB
testcase_15 AC 85 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k=gets.split.map &:to_i
l=[]
n.times{
  w=gets.to_i
  if w<0
    i=(0..l.size-1).bsearch{|x|l[x]>=-w}||l.size
    if l[i]==-w
      l.delete_at(i)
    end
  else
    i=(0..l.size-1).bsearch{|x|l[x]>=w}||l.size
    if l.size-i<k
      l.insert(i,w)
    end
  end
}
p l.size
0