結果

問題 No.159 刺さらないUSB
ユーザー リチウムリチウム
提出日時 2015-03-01 23:26:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 3,895 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 54,652 KB
最終ジャッジ日時 2024-06-24 00:40:39
合計ジャッジ時間 8,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
54,440 KB
testcase_01 AC 166 ms
54,392 KB
testcase_02 AC 167 ms
54,420 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 166 ms
54,540 KB
testcase_06 AC 164 ms
54,096 KB
testcase_07 AC 168 ms
54,516 KB
testcase_08 AC 164 ms
54,420 KB
testcase_09 AC 165 ms
54,404 KB
testcase_10 AC 164 ms
54,268 KB
testcase_11 AC 165 ms
54,652 KB
testcase_12 WA -
testcase_13 AC 162 ms
54,396 KB
testcase_14 AC 163 ms
54,404 KB
testcase_15 AC 164 ms
54,460 KB
testcase_16 AC 173 ms
54,260 KB
testcase_17 AC 162 ms
54,436 KB
testcase_18 AC 163 ms
54,288 KB
testcase_19 AC 162 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

}
0