結果

問題 No.159 刺さらないUSB
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 17:47:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 56,096 KB
最終ジャッジ日時 2024-07-06 03:57:48
合計ジャッジ時間 5,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,960 KB
testcase_01 AC 115 ms
54,220 KB
testcase_02 WA -
testcase_03 AC 110 ms
53,268 KB
testcase_04 AC 119 ms
53,560 KB
testcase_05 WA -
testcase_06 AC 117 ms
54,016 KB
testcase_07 WA -
testcase_08 AC 119 ms
53,204 KB
testcase_09 AC 122 ms
53,696 KB
testcase_10 AC 122 ms
54,104 KB
testcase_11 WA -
testcase_12 AC 120 ms
54,000 KB
testcase_13 AC 127 ms
54,224 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 117 ms
53,336 KB
testcase_17 AC 121 ms
54,108 KB
testcase_18 WA -
testcase_19 AC 117 ms
53,420 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 - p) * q;
		
		System.out.println(P1 < P2 ? "YES" : "NO");
	}
}
0