結果

問題 No.145 yukiover
ユーザー simansiman
提出日時 2022-02-23 17:13:05
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 724 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-07-01 16:59:15
合計ジャッジ時間 6,015 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 WA -
testcase_09 AC 88 ms
12,160 KB
testcase_10 WA -
testcase_11 AC 284 ms
24,704 KB
testcase_12 AC 287 ms
23,040 KB
testcase_13 AC 276 ms
22,784 KB
testcase_14 AC 265 ms
22,528 KB
testcase_15 WA -
testcase_16 AC 196 ms
21,632 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 278 ms
22,784 KB
testcase_20 AC 271 ms
22,784 KB
testcase_21 WA -
testcase_22 AC 278 ms
22,784 KB
testcase_23 AC 303 ms
23,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
S = gets.chomp.chars.sort.reverse
T = 'yuki'
queue = S

ans = 0
stock = []

5.times do |i|
  next_que = []
  next_stock = []

  until queue.empty?
    s = queue.shift

    if i == 4
      if stock.size > 0
        ans += 1
        stock.shift
      end

      next
    end

    if T[i] > s
      next_que << s
      next
    end

    if T[i] < s
      if i == 0
        ans += 1
      elsif stock.size > 0
        ans += 1
        stock.shift
      end
    else
      if i == 0
        next_stock << s
      elsif stock.size > 0
        str = stock.shift
        str << s
        next_stock << str
      else
        next_que << s
      end
    end
  end

  queue = next_que
  stock = next_stock
end

puts ans
0