結果

問題 No.159 刺さらないUSB
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 17:48:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 1,000 ms
コード長 509 bytes
コンパイル時間 1,984 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-07-01 23:46:10
合計ジャッジ時間 6,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
41,448 KB
testcase_01 AC 133 ms
40,804 KB
testcase_02 AC 141 ms
41,576 KB
testcase_03 AC 141 ms
41,420 KB
testcase_04 AC 140 ms
41,200 KB
testcase_05 AC 140 ms
41,160 KB
testcase_06 AC 142 ms
41,628 KB
testcase_07 AC 142 ms
41,164 KB
testcase_08 AC 143 ms
41,524 KB
testcase_09 AC 143 ms
41,560 KB
testcase_10 AC 144 ms
41,204 KB
testcase_11 AC 143 ms
41,716 KB
testcase_12 AC 141 ms
41,544 KB
testcase_13 AC 141 ms
41,200 KB
testcase_14 AC 146 ms
41,572 KB
testcase_15 AC 142 ms
41,336 KB
testcase_16 AC 141 ms
41,056 KB
testcase_17 AC 140 ms
41,540 KB
testcase_18 AC 126 ms
40,664 KB
testcase_19 AC 143 ms
41,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		Scanner sc = new Scanner(System.in);
		
		final double p = sc.nextDouble();
		final double q = sc.nextDouble();
		
		final double P1 = (1 - p) * q;
		final double P2 = p * (1 - q) * q;
		
		System.out.println(P1 < P2 ? "YES" : "NO");
	}
}
0