結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー |
|
提出日時 | 2022-09-27 02:24:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 128 ms / 2,000 ms |
コード長 | 485 bytes |
コンパイル時間 | 1,671 ms |
コンパイル使用メモリ | 194,036 KB |
最終ジャッジ日時 | 2025-02-07 16:46:18 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <bits/stdc++.h>#define rep(i,n) for(int i = 0; i < (n); i++)using namespace std;typedef long long ll;int main(){cin.tie(0);ios::sync_with_stdio(0);int o = 0, x = 0;string s; cin >> s;for(char c : s) {if(c == 'o') o++;if(c == 'x') x++;}rep(i,int(s.size())) {cout << fixed << setprecision(20) << double(o) / double(o + x) * 100.0 << '\n';if(s[i] == 'o') o--;if(s[i] == 'x') x--;}}