結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー kuroi_13kuroi_13
提出日時 2018-04-12 14:35:59
言語 Perl
(5.38.2)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 14,720 KB
最終ジャッジ日時 2024-06-26 21:24:27
合計ジャッジ時間 1,523 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,812 KB
testcase_01 AC 7 ms
6,944 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 6 ms
6,944 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 23 ms
6,944 KB
testcase_06 AC 91 ms
10,368 KB
testcase_07 AC 184 ms
14,592 KB
testcase_08 AC 145 ms
14,592 KB
testcase_09 AC 103 ms
14,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;

my $str = <>;
chomp $str;

my %p = (m => length($str)+1, c => scalar(() = $str =~ m/o/g));

for my $i(split '', $str){
  print sprintf("%.13f", $p{c}/--$p{m} * 100)."\n";
  if($i eq 'o' and $p{c}){
    $p{c}--;
  }
}
0