結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー stmtk_01stmtk_01
提出日時 2018-07-28 01:17:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 70,648 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-19 05:50:25
合計ジャッジ時間 3,926 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 4 ms
4,380 KB
testcase_05 AC 24 ms
4,376 KB
testcase_06 AC 112 ms
4,380 KB
testcase_07 AC 222 ms
4,380 KB
testcase_08 AC 186 ms
4,384 KB
testcase_09 AC 170 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <vector>
#include <string>
#include <algorithm>
#include <iterator>
#include <iomanip>

using namespace std;

#define rep(i, n) for(int i = 0; i < n; i++)
#define repi(i, n) for(auto i = (n).begin(); i != (n).end(); i++)
#define in_arr(type, a, n) copy_n(istream_iterator<type>(cin), n, (a).begin());
#define ll long long int

int main(){
    string s;
    cin >> s;
    int n = s.size();
    int m = 0;
    cout << fixed << setprecision(8);
    repi(i, s){
        if(*i == 'o')
            ++m;
    }
    repi(i, s){
        cout << (float)m / n * 100 << endl;
        n--;
        if(*i == 'o'){
            m--;
        }
    }
    return 0;
}
0