結果

問題 No.218 経験値1.5倍
ユーザー ちよちゃんちよちゃん
提出日時 2016-08-06 02:50:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 3,632 ms
コンパイル使用メモリ 74,796 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-11-07 02:33:00
合計ジャッジ時間 9,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
40,984 KB
testcase_01 AC 145 ms
41,836 KB
testcase_02 AC 147 ms
41,156 KB
testcase_03 AC 143 ms
41,764 KB
testcase_04 AC 141 ms
41,992 KB
testcase_05 AC 128 ms
40,860 KB
testcase_06 AC 146 ms
41,784 KB
testcase_07 AC 142 ms
41,288 KB
testcase_08 AC 150 ms
41,780 KB
testcase_09 AC 149 ms
41,676 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 143 ms
41,452 KB
testcase_14 AC 143 ms
41,496 KB
testcase_15 AC 145 ms
41,540 KB
testcase_16 WA -
testcase_17 AC 143 ms
41,596 KB
testcase_18 AC 141 ms
41,564 KB
testcase_19 AC 142 ms
41,436 KB
testcase_20 AC 142 ms
41,600 KB
testcase_21 AC 144 ms
41,428 KB
testcase_22 AC 139 ms
41,364 KB
testcase_23 AC 139 ms
41,280 KB
testcase_24 AC 141 ms
41,680 KB
testcase_25 AC 139 ms
41,640 KB
testcase_26 WA -
testcase_27 AC 143 ms
41,508 KB
testcase_28 WA -
testcase_29 AC 144 ms
41,468 KB
testcase_30 AC 140 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class yuki218 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner scan = new Scanner(System.in);
		double a = scan.nextDouble();
		double b = scan.nextDouble();
		double c = scan.nextDouble();
		
		double a1 = (a/b); 
		double a2 = Math.ceil(a/c);
		if ((a2/a1)<=(2.0/3.0)) {
			System.out.println("YES");
		} else {
			System.out.println("NO");			
		}
		scan.close();

	}

}
0