結果

問題 No.159 刺さらないUSB
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:04:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 3,521 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 56,060 KB
最終ジャッジ日時 2024-11-15 22:33:12
合計ジャッジ時間 6,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,976 KB
testcase_01 AC 132 ms
53,452 KB
testcase_02 AC 128 ms
53,588 KB
testcase_03 AC 132 ms
54,240 KB
testcase_04 AC 136 ms
54,184 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 127 ms
53,700 KB
testcase_09 AC 120 ms
53,444 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 136 ms
54,172 KB
testcase_13 AC 128 ms
53,520 KB
testcase_14 AC 131 ms
54,276 KB
testcase_15 AC 126 ms
54,352 KB
testcase_16 AC 130 ms
54,392 KB
testcase_17 AC 129 ms
54,012 KB
testcase_18 AC 133 ms
54,204 KB
testcase_19 AC 134 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		double p = sc.nextDouble(), q = sc.nextDouble();
		if((1-p)*q < p*q*q){
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}
}
0