結果

問題 No.787 Mice and Traitors(ネズミ達と裏切り者)
ユーザー tentententen
提出日時 2020-11-19 08:54:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 54,648 KB
最終ジャッジ日時 2024-07-23 09:45:17
合計ジャッジ時間 4,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,408 KB
testcase_01 AC 146 ms
54,136 KB
testcase_02 AC 144 ms
54,508 KB
testcase_03 AC 145 ms
54,532 KB
testcase_04 AC 149 ms
54,352 KB
testcase_05 AC 152 ms
54,216 KB
testcase_06 AC 146 ms
54,648 KB
testcase_07 AC 146 ms
54,508 KB
testcase_08 AC 147 ms
54,372 KB
testcase_09 AC 145 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        double p = sc.nextDouble() / 100.0;
        double q = sc.nextDouble() / 100.0;
        double mother = p * q + (1 - p) * (1 - q);
        double ans = p * q / mother;
        System.out.println(java.math.BigDecimal.valueOf(ans * 100).toPlainString());
    }
}
0