結果

問題 No.365 ジェンガソート
ユーザー k_ab_ok_ab_o
提出日時 2017-01-25 15:29:58
言語 Ruby
(3.3.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 975 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-06-02 12:02:03
合計ジャッジ時間 5,391 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,288 KB
testcase_01 AC 73 ms
12,160 KB
testcase_02 AC 74 ms
12,288 KB
testcase_03 AC 76 ms
12,032 KB
testcase_04 AC 73 ms
12,160 KB
testcase_05 AC 72 ms
12,160 KB
testcase_06 AC 73 ms
12,032 KB
testcase_07 AC 73 ms
12,160 KB
testcase_08 AC 72 ms
12,160 KB
testcase_09 AC 73 ms
12,160 KB
testcase_10 AC 72 ms
12,160 KB
testcase_11 AC 73 ms
12,032 KB
testcase_12 AC 74 ms
12,160 KB
testcase_13 AC 72 ms
12,160 KB
testcase_14 AC 72 ms
12,288 KB
testcase_15 AC 73 ms
12,160 KB
testcase_16 AC 125 ms
18,944 KB
testcase_17 AC 127 ms
20,608 KB
testcase_18 AC 78 ms
12,416 KB
testcase_19 AC 112 ms
19,584 KB
testcase_20 AC 88 ms
14,464 KB
testcase_21 AC 89 ms
13,952 KB
testcase_22 AC 122 ms
19,072 KB
testcase_23 AC 101 ms
16,256 KB
testcase_24 AC 122 ms
18,560 KB
testcase_25 AC 88 ms
13,824 KB
testcase_26 AC 109 ms
17,408 KB
testcase_27 AC 135 ms
21,760 KB
testcase_28 AC 114 ms
17,536 KB
testcase_29 AC 131 ms
20,992 KB
testcase_30 AC 114 ms
17,792 KB
testcase_31 AC 93 ms
14,208 KB
testcase_32 AC 91 ms
14,080 KB
testcase_33 AC 138 ms
21,632 KB
testcase_34 AC 84 ms
13,184 KB
testcase_35 AC 141 ms
18,816 KB
testcase_36 AC 131 ms
19,712 KB
testcase_37 AC 119 ms
19,840 KB
testcase_38 AC 138 ms
21,376 KB
testcase_39 AC 115 ms
19,840 KB
testcase_40 AC 127 ms
20,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Xxx
  attr_accessor :answer

  def initialize
    @answer = 0
  end

  def set_inputs
    @n = gets.chomp.to_i
    @block_lens = gets.chomp.split(" ").map{|n| n.to_i}
  end

  def execute
    sorting = []
    keeping = []
    prev = nil
    @block_lens.each do |n|
      if prev.nil?
        prev = n
        keeping << n
        next
      end

      if prev > n
        sorting << n
      else
        keeping << n
        prev = n
      end
    end
    @answer = sorting.size

    # まだ並んでないなら再度並べる
    if sorting.size > 0 and keeping[0] < sorting.max
      sorting2 = []
      prev2 = nil
      (sorting.sort + keeping).each do |n|
        if prev2.nil?
          prev2 = n
          next
        end

        if prev2 > n
          sorting2 << n
        else
          prev2 = n
        end
      end
      @answer += sorting2.size
    end
  end
end

if $0 == __FILE__
  ins = Xxx.new
  ins.set_inputs
  ins.execute
  puts ins.answer
end
0