結果

問題 No.159 刺さらないUSB
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-11 19:41:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-07-02 00:01:15
合計ジャッジ時間 5,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
40,556 KB
testcase_01 AC 142 ms
41,432 KB
testcase_02 AC 142 ms
41,492 KB
testcase_03 AC 141 ms
40,980 KB
testcase_04 AC 126 ms
40,612 KB
testcase_05 AC 147 ms
41,328 KB
testcase_06 AC 143 ms
41,132 KB
testcase_07 AC 143 ms
41,280 KB
testcase_08 AC 145 ms
41,024 KB
testcase_09 AC 143 ms
41,040 KB
testcase_10 AC 141 ms
41,160 KB
testcase_11 AC 143 ms
41,548 KB
testcase_12 AC 143 ms
41,276 KB
testcase_13 AC 145 ms
41,392 KB
testcase_14 AC 143 ms
41,260 KB
testcase_15 AC 135 ms
40,480 KB
testcase_16 AC 129 ms
40,640 KB
testcase_17 AC 130 ms
40,664 KB
testcase_18 AC 139 ms
41,160 KB
testcase_19 AC 127 ms
40,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question159
{
	public static void main(String[] args)
	{
	
		Scanner scan = new Scanner(System.in);
		double p = scan.nextDouble();
		double q = scan.nextDouble();
		
		double p1,p2;
		
		p1 = (1-p)*q;
		p2 = (1-q)*q*p;
		
		System.out.println(p1<p2 ? "YES" : "NO");

	}
}
0