結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | creep04 |
提出日時 | 2018-03-23 22:35:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 2,220 bytes |
コンパイル時間 | 1,478 ms |
コンパイル使用メモリ | 157,936 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-24 21:50:09 |
合計ジャッジ時間 | 3,506 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 12 ms
5,376 KB |
testcase_06 | AC | 54 ms
5,376 KB |
testcase_07 | AC | 105 ms
5,376 KB |
testcase_08 | AC | 48 ms
5,376 KB |
testcase_09 | AC | 38 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //#define int long long #define reps(i,s,n) for(int (i)=(s);(i)<(n);++(i)) #define rep(i,n) reps(i,0,n) #define rept(i,n) rep(i,(n)+1) #define repst(i,s,n) reps(i,s,(n)+1) #define reprt(i,n,t) for(int (i)=(n);(i)>=(t);--(i)) #define repr(i,n) reprt(i,n,0) #define each(itr,v) for(auto &(itr):(v)) #define all(c) (c).begin(),(c).end() #define pb push_back #define mp(x,y) make_pair((x),(y)) #define fi first #define se second #define tmax(x,y,z) max(x,max(y,z)) #define tmin(x,y,z) min(x,min(y,z)) #define chmin(x,y) x=min(x,y) #define chmax(x,y) x=max(x,y) #define log2(x) log(x)/log(2) #define ln '\n' #define bln(i,n) (i==n-1?'\n':' ') #define dbg(x) cout<<#x" = "<<(x)<<ln #define dbga(x,n) {cout<<#x" : ";for(int (i)=0;i<(n);++i){cout<<((x)[i])<<(i==((n)-1)?'\n':' ');}} typedef long double ld; typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<string> vst; typedef vector<bool> vb; typedef vector<ld> vld; typedef vector<pii> vpii; typedef vector<pll> vpll; typedef vector<vector<int> > mat; const ll inf = (ll)1e9+10; const ll linf = (ll)1e18+10; const ll mod = (ll)(1e9+7); const int dx[] = {0, 1, 0, -1}; const int dy[] = {1, 0, -1, 0}; const int ddx[] = {0, 1, 1, 1, 0, -1, -1, -1}; const int ddy[] = {1, 1, 0, -1, -1, -1, 0, 1}; const double eps = 1e-10; struct oreno_initializer { oreno_initializer() { cin.tie(0); ios::sync_with_stdio(0); } } oreno_initializer; // ━━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥… // .。.:( ^ω^)・゚+.。.:( ^ω^)・゚+.。.:( ^ω^)・゚+.。.:( ^ω^)・゚+.。.:( ^ω^)・゚+ // ・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・ int n, m, b; string s; signed main() { cin >> s; n = s.size(); each(i,s) m += i=='o', b+= i=='x'; rep(i,n) { double p = 1.*m/(m+b); printf("%.14lf\n",p*100); (s[i]=='o' ? m : b)--; } }