結果

問題 No.159 刺さらないUSB
ユーザー mits58mits58
提出日時 2016-07-02 16:53:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 1,000 ms
コード長 333 bytes
コンパイル時間 2,066 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-07-01 23:59:04
合計ジャッジ時間 5,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,324 KB
testcase_01 AC 145 ms
41,360 KB
testcase_02 AC 143 ms
41,524 KB
testcase_03 AC 140 ms
41,336 KB
testcase_04 AC 140 ms
41,188 KB
testcase_05 AC 142 ms
41,340 KB
testcase_06 AC 141 ms
41,176 KB
testcase_07 AC 145 ms
41,228 KB
testcase_08 AC 143 ms
41,316 KB
testcase_09 AC 141 ms
41,060 KB
testcase_10 AC 137 ms
41,592 KB
testcase_11 AC 136 ms
40,780 KB
testcase_12 AC 142 ms
41,368 KB
testcase_13 AC 142 ms
41,292 KB
testcase_14 AC 141 ms
41,396 KB
testcase_15 AC 140 ms
41,176 KB
testcase_16 AC 139 ms
41,428 KB
testcase_17 AC 138 ms
40,624 KB
testcase_18 AC 142 ms
41,468 KB
testcase_19 AC 143 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			double p=sc.nextDouble();
			double q=sc.nextDouble();
			double p1=(1-p)*q;
			double p2=p*(1-q)*q;
			if(p1<p2) System.out.println("YES");
			else System.out.println("NO");
		}
	}
}
0