結果

問題 No.159 刺さらないUSB
ユーザー Flere0114Flere0114
提出日時 2016-02-24 12:17:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 366 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-07-01 23:57:28
合計ジャッジ時間 7,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,536 KB
testcase_01 AC 142 ms
41,432 KB
testcase_02 AC 140 ms
41,336 KB
testcase_03 AC 141 ms
41,276 KB
testcase_04 AC 142 ms
41,032 KB
testcase_05 AC 142 ms
41,100 KB
testcase_06 AC 146 ms
41,384 KB
testcase_07 AC 139 ms
41,356 KB
testcase_08 AC 142 ms
41,500 KB
testcase_09 AC 144 ms
41,564 KB
testcase_10 AC 146 ms
41,340 KB
testcase_11 AC 143 ms
41,360 KB
testcase_12 AC 143 ms
41,508 KB
testcase_13 AC 141 ms
41,260 KB
testcase_14 AC 140 ms
41,396 KB
testcase_15 AC 126 ms
40,920 KB
testcase_16 AC 140 ms
41,472 KB
testcase_17 AC 142 ms
40,996 KB
testcase_18 AC 142 ms
41,572 KB
testcase_19 AC 129 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

        if((1-p) * q < p *(1-q) * q){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0