結果

問題 No.159 刺さらないUSB
ユーザー kou6839kou6839
提出日時 2015-03-09 00:36:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 359 bytes
コンパイル時間 2,684 ms
コンパイル使用メモリ 83,920 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-06-24 16:40:19
合計ジャッジ時間 7,098 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,904 KB
testcase_01 AC 137 ms
53,940 KB
testcase_02 AC 136 ms
54,308 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 134 ms
54,064 KB
testcase_06 AC 143 ms
54,120 KB
testcase_07 AC 133 ms
53,960 KB
testcase_08 AC 135 ms
54,160 KB
testcase_09 AC 145 ms
53,832 KB
testcase_10 AC 152 ms
54,176 KB
testcase_11 AC 134 ms
54,028 KB
testcase_12 WA -
testcase_13 AC 135 ms
53,616 KB
testcase_14 AC 131 ms
54,092 KB
testcase_15 AC 137 ms
54,204 KB
testcase_16 AC 133 ms
54,080 KB
testcase_17 AC 135 ms
54,224 KB
testcase_18 AC 133 ms
54,312 KB
testcase_19 AC 134 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.beans.IntrospectionException;
import java.util.*;

class Main {
	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