結果

問題 No.159 刺さらないUSB
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 21:21:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 1,740 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 41,836 KB
最終ジャッジ日時 2024-05-05 14:41:19
合計ジャッジ時間 5,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,452 KB
testcase_01 AC 114 ms
41,176 KB
testcase_02 AC 104 ms
40,496 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 124 ms
41,680 KB
testcase_06 AC 115 ms
40,852 KB
testcase_07 AC 108 ms
40,880 KB
testcase_08 AC 108 ms
40,812 KB
testcase_09 AC 120 ms
40,916 KB
testcase_10 AC 111 ms
41,600 KB
testcase_11 AC 120 ms
41,276 KB
testcase_12 AC 122 ms
41,508 KB
testcase_13 AC 113 ms
40,932 KB
testcase_14 AC 124 ms
41,728 KB
testcase_15 AC 121 ms
41,284 KB
testcase_16 AC 121 ms
41,432 KB
testcase_17 AC 120 ms
41,140 KB
testcase_18 AC 116 ms
41,064 KB
testcase_19 AC 113 ms
41,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y159 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		float p=sc.nextFloat(), q=sc.nextFloat();
		System.out.println(((1-p)*q)<(p*(1-q)*p)?"YES":"NO");
		sc.close();
	}
}
0