結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー BwambocosBwambocos
提出日時 2018-03-23 22:50:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 1,827 ms
コンパイル使用メモリ 166,924 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 22:21:39
合計ジャッジ時間 2,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 26 ms
6,940 KB
testcase_06 AC 121 ms
6,944 KB
testcase_07 AC 242 ms
6,944 KB
testcase_08 AC 195 ms
6,940 KB
testcase_09 AC 176 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define in std::cin
#define out std::cout
#define rep(i,N) for(int i=0;i<N;++i)
typedef long long int LL;

std::string S;
int safe, dang;

int main()
{
	in >> S;
	for (auto c : S) (c == 'o' ? safe : dang) += 1;
	out << std::fixed << std::setprecision(13);
	for (auto c : S)
	{
		out << 100.*safe / (safe + dang) << std::endl;
		(c == 'o' ? safe : dang) -= 1;
	}
	return 0;
}
0