結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー gemmarogemmaro
提出日時 2020-02-20 09:13:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-10-08 18:43:46
合計ジャッジ時間 3,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 89 ms
12,032 KB
testcase_02 AC 89 ms
11,904 KB
testcase_03 AC 89 ms
12,032 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 122 ms
12,800 KB
testcase_06 AC 262 ms
15,488 KB
testcase_07 AC 447 ms
22,784 KB
testcase_08 AC 279 ms
22,912 KB
testcase_09 AC 266 ms
22,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

EPS = 10**-6

S = gets.chomp.chars.map { |safe| safe == 'o' }

SAFE_NUM = S.select { |i| i }.size
remains = Array.new(S.size, 0)
remains[0] = SAFE_NUM
S[0..-2].each_with_index do |safe, index|
  remains[index + 1] = remains[index]
  remains[index + 1] -= 1 if safe
end

PROBS = remains.map.with_index do |remain, index|
  blanks = S.size - index
  Rational(remain, blanks).to_f * 100
end

puts PROBS
0