結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | youthfuldays072 |
提出日時 | 2018-08-09 20:21:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 89 ms / 2,000 ms |
コード長 | 641 bytes |
コンパイル時間 | 1,355 ms |
コンパイル使用メモリ | 70,592 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-23 04:57:26 |
合計ジャッジ時間 | 2,763 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 11 ms
5,376 KB |
testcase_06 | AC | 45 ms
5,376 KB |
testcase_07 | AC | 89 ms
5,376 KB |
testcase_08 | AC | 46 ms
5,376 KB |
testcase_09 | AC | 34 ms
5,376 KB |
ソースコード
#include<iostream> #include<string> #include<algorithm> #include<functional> #include<vector> #include<set> #include<queue> #include<list> #include<stdio.h> #include<stdlib.h> #include<map> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() using namespace std; int main() { string s; cin >> s; int l = s.length(); int cnt = 0; for (char c: s) { if (c == 'o') { ++cnt; } } for (int i = 0; i < s.length(); i++) { double ans= (double)cnt*100 / l--; printf("%.10f\n", ans); if (s[i]=='o') { --cnt; } } }