結果

問題 No.59 鉄道の旅
ユーザー gigurururugigurururu
提出日時 2014-11-07 00:01:26
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 203 bytes
コンパイル時間 51 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 89,872 KB
最終ジャッジ日時 2024-12-24 20:10:33
合計ジャッジ時間 32,237 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
79,232 KB
testcase_01 AC 100 ms
44,032 KB
testcase_02 AC 107 ms
17,664 KB
testcase_03 AC 102 ms
12,032 KB
testcase_04 TLE -
testcase_05 AC 97 ms
12,288 KB
testcase_06 AC 98 ms
12,032 KB
testcase_07 AC 97 ms
12,288 KB
testcase_08 AC 3,547 ms
64,244 KB
testcase_09 AC 628 ms
30,336 KB
testcase_10 AC 1,318 ms
41,984 KB
testcase_11 AC 928 ms
32,256 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 102 ms
89,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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