結果

問題 No.159 刺さらないUSB
ユーザー spaciaspacia
提出日時 2015-12-20 11:07:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 469 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 37,224 KB
最終ジャッジ日時 2024-07-01 23:56:21
合計ジャッジ時間 3,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,984 KB
testcase_01 AC 52 ms
36,944 KB
testcase_02 AC 53 ms
36,852 KB
testcase_03 AC 53 ms
36,960 KB
testcase_04 AC 52 ms
37,104 KB
testcase_05 AC 51 ms
36,716 KB
testcase_06 AC 52 ms
36,712 KB
testcase_07 AC 51 ms
37,224 KB
testcase_08 AC 52 ms
37,068 KB
testcase_09 AC 52 ms
36,864 KB
testcase_10 AC 52 ms
37,080 KB
testcase_11 AC 52 ms
36,968 KB
testcase_12 AC 52 ms
37,100 KB
testcase_13 AC 52 ms
36,992 KB
testcase_14 AC 52 ms
36,660 KB
testcase_15 AC 52 ms
36,936 KB
testcase_16 AC 52 ms
36,824 KB
testcase_17 AC 52 ms
37,208 KB
testcase_18 AC 52 ms
37,104 KB
testcase_19 AC 52 ms
36,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main159 {
	
	public static void out (Object out) {
		System.out.println(out);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		double p = Double.parseDouble(line[0]);
		double q = Double.parseDouble(line[1]);
		
		System.out.println(1 - p < p * (1 - q) ? "YES" : "NO");
		
	}
}
0