結果

問題 No.218 経験値1.5倍
ユーザー ffmm00ffmm00
提出日時 2015-06-01 07:23:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 4,066 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-06-09 09:20:58
合計ジャッジ時間 8,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,600 KB
testcase_01 AC 143 ms
41,572 KB
testcase_02 AC 144 ms
41,496 KB
testcase_03 AC 134 ms
40,788 KB
testcase_04 AC 141 ms
41,436 KB
testcase_05 AC 141 ms
41,680 KB
testcase_06 AC 144 ms
41,640 KB
testcase_07 AC 141 ms
41,512 KB
testcase_08 AC 141 ms
41,332 KB
testcase_09 AC 142 ms
41,548 KB
testcase_10 AC 140 ms
41,636 KB
testcase_11 AC 142 ms
41,348 KB
testcase_12 AC 135 ms
41,252 KB
testcase_13 AC 138 ms
40,660 KB
testcase_14 AC 126 ms
40,972 KB
testcase_15 AC 141 ms
41,372 KB
testcase_16 AC 143 ms
41,280 KB
testcase_17 AC 139 ms
41,428 KB
testcase_18 AC 142 ms
41,428 KB
testcase_19 AC 143 ms
41,556 KB
testcase_20 AC 146 ms
41,332 KB
testcase_21 AC 142 ms
41,532 KB
testcase_22 AC 144 ms
41,460 KB
testcase_23 AC 143 ms
41,368 KB
testcase_24 AC 131 ms
40,628 KB
testcase_25 AC 143 ms
41,316 KB
testcase_26 AC 143 ms
41,188 KB
testcase_27 AC 131 ms
41,216 KB
testcase_28 AC 142 ms
41,552 KB
testcase_29 AC 142 ms
41,580 KB
testcase_30 AC 142 ms
41,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N218 {

	public static void main(String[] args) {
		Scanner sca = new Scanner(System.in);
		double a = sca.nextDouble();
		double b = sca.nextDouble();
		double c = sca.nextDouble();

		int n = (int) Math.ceil(a / b);
		int k = (int) Math.ceil(a / c);

		if ((n * 2 >= k * 3))
			System.out.println("YES");
		else
			System.out.println("NO");

	}
}
0