結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー stmtk_01stmtk_01
提出日時 2018-07-28 01:17:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 69,944 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 18:08:02
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 20 ms
5,376 KB
testcase_06 AC 97 ms
5,376 KB
testcase_07 AC 195 ms
5,376 KB
testcase_08 AC 166 ms
5,376 KB
testcase_09 AC 150 ms
5,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