結果

問題 No.159 刺さらないUSB
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 21:24:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 232 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-02 00:01:27
合計ジャッジ時間 5,903 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,372 KB
testcase_01 AC 142 ms
41,348 KB
testcase_02 AC 139 ms
41,356 KB
testcase_03 AC 140 ms
41,072 KB
testcase_04 AC 148 ms
41,180 KB
testcase_05 AC 142 ms
41,152 KB
testcase_06 AC 139 ms
41,444 KB
testcase_07 AC 138 ms
41,256 KB
testcase_08 AC 142 ms
41,144 KB
testcase_09 AC 135 ms
40,520 KB
testcase_10 AC 142 ms
41,348 KB
testcase_11 AC 142 ms
41,372 KB
testcase_12 AC 140 ms
41,320 KB
testcase_13 AC 142 ms
41,132 KB
testcase_14 AC 138 ms
41,088 KB
testcase_15 AC 141 ms
40,944 KB
testcase_16 AC 133 ms
40,780 KB
testcase_17 AC 146 ms
41,060 KB
testcase_18 AC 139 ms
41,316 KB
testcase_19 AC 148 ms
41,088 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)*q)?"YES":"NO");
		sc.close();
	}
}
0