結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー cs027983cs027983
提出日時 2018-03-24 03:56:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-06-25 02:41:01
合計ジャッジ時間 2,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 91 ms
12,288 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 87 ms
12,288 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 112 ms
13,568 KB
testcase_06 AC 203 ms
17,280 KB
testcase_07 AC 320 ms
21,504 KB
testcase_08 AC 281 ms
21,888 KB
testcase_09 AC 263 ms
21,504 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

places = gets.to_s.chomp!.split('')
number_of_rats = places.size.to_f
number_of_correct_answers = places.select { |p| p if p == 'o' }.size.to_f

places.each do |place|
  puts sprintf('%.13f', number_of_correct_answers / number_of_rats * 100)
  number_of_correct_answers -= 1 if place == 'o'
  number_of_rats -= 1
end
0