結果

問題 No.159 刺さらないUSB
ユーザー kou6839kou6839
提出日時 2015-03-09 00:39:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 1,000 ms
コード長 355 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-07-01 23:43:31
合計ジャッジ時間 5,605 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,168 KB
testcase_01 AC 142 ms
41,284 KB
testcase_02 AC 143 ms
40,856 KB
testcase_03 AC 143 ms
41,280 KB
testcase_04 AC 145 ms
41,292 KB
testcase_05 AC 144 ms
41,660 KB
testcase_06 AC 137 ms
40,396 KB
testcase_07 AC 142 ms
41,380 KB
testcase_08 AC 143 ms
41,572 KB
testcase_09 AC 146 ms
41,216 KB
testcase_10 AC 141 ms
41,264 KB
testcase_11 AC 141 ms
41,432 KB
testcase_12 AC 141 ms
41,112 KB
testcase_13 AC 140 ms
41,408 KB
testcase_14 AC 140 ms
41,484 KB
testcase_15 AC 140 ms
41,452 KB
testcase_16 AC 142 ms
41,304 KB
testcase_17 AC 145 ms
41,692 KB
testcase_18 AC 145 ms
41,480 KB
testcase_19 AC 144 ms
41,180 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)*q;
		if(p1<p2){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0