結果

問題 No.159 刺さらないUSB
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-08-16 23:09:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 509 bytes
コンパイル時間 2,040 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-07-01 23:59:21
合計ジャッジ時間 5,592 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,088 KB
testcase_01 AC 138 ms
41,192 KB
testcase_02 AC 138 ms
41,020 KB
testcase_03 AC 140 ms
41,008 KB
testcase_04 AC 142 ms
41,280 KB
testcase_05 AC 140 ms
41,276 KB
testcase_06 AC 137 ms
41,456 KB
testcase_07 AC 137 ms
40,948 KB
testcase_08 AC 138 ms
41,336 KB
testcase_09 AC 139 ms
41,128 KB
testcase_10 AC 142 ms
41,296 KB
testcase_11 AC 138 ms
41,208 KB
testcase_12 AC 137 ms
41,356 KB
testcase_13 AC 137 ms
41,336 KB
testcase_14 AC 123 ms
40,440 KB
testcase_15 AC 135 ms
40,540 KB
testcase_16 AC 138 ms
41,112 KB
testcase_17 AC 130 ms
41,108 KB
testcase_18 AC 139 ms
41,160 KB
testcase_19 AC 139 ms
41,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        double p = in.nextDouble();
        double q = in.nextDouble();

        double a1 = 0.0, a2 = 0.0; // P1とP2

        a1 = (1.0 - p) * q;
        a2 = p * (1.0 - q) * q;

        if(a1 < a2) System.out.println("YES");
        else System.out.println("NO");

        in.close();
    }
}
0