結果

問題 No.787 Mice and Traitors(ネズミ達と裏切り者)
ユーザー leaf_1415
提出日時 2019-02-08 21:40:41
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 53,728 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 18:39:37
合計ジャッジ時間 847 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>

using namespace std;

int main(void)
{
	double p, q;
	cin >> p >> q;
	
	p /= 100, q /= 100;
	double ans = p*q / (p*q + (1-q)*(1-p));
	printf("%.11f\n", ans*100);
	
	return 0;
}
0