結果

問題 No.787 Mice and Traitors(ネズミ達と裏切り者)
ユーザー GrenacheGrenache
提出日時 2019-05-02 22:33:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 3,566 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-06-10 04:12:33
合計ジャッジ時間 5,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,788 KB
testcase_01 AC 141 ms
54,568 KB
testcase_02 AC 129 ms
53,732 KB
testcase_03 AC 142 ms
54,572 KB
testcase_04 AC 143 ms
54,404 KB
testcase_05 AC 141 ms
54,224 KB
testcase_06 AC 143 ms
54,588 KB
testcase_07 AC 149 ms
54,344 KB
testcase_08 AC 147 ms
54,672 KB
testcase_09 AC 143 ms
54,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder787 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		double p = sc.nextDouble();
		double q = sc.nextDouble();

		double u = p * q;
		double nu = (100 - p) * (100 - q);

		if (p == 0) {
			pr.println(0);
		} else {
			pr.printf("%.7f%n", u / (nu + u) * 100);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0