結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー motimoti
提出日時 2018-05-20 23:46:42
言語 Perl
(5.38.2)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-06-28 14:50:44
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,888 KB
testcase_01 AC 7 ms
5,760 KB
testcase_02 AC 8 ms
5,888 KB
testcase_03 AC 6 ms
6,016 KB
testcase_04 AC 8 ms
6,016 KB
testcase_05 AC 23 ms
7,680 KB
testcase_06 AC 94 ms
14,080 KB
testcase_07 AC 181 ms
22,400 KB
testcase_08 AC 80 ms
22,272 KB
testcase_09 AC 78 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

#!/usr/bin/env perl

use strict;
use warnings;

my $s = <>; chomp $s;
my @array;
my $liveness = 0;
for my $ch (split //, $s) {
  push @array, $ch;
  if ($ch eq 'o') {
    $liveness++;
  }
}

my $all = @array;

for my $ch (@array) {
  print $liveness / $all * 100 . "\n";
  if ($ch eq 'o') {
    $liveness--;
  }
  $all--;
}
0