結果

問題 No.218 経験値1.5倍
ユーザー tsunabittsunabit
提出日時 2019-05-23 00:13:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 2,903 ms
コンパイル使用メモリ 75,416 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-09-17 09:41:20
合計ジャッジ時間 7,635 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,380 KB
testcase_01 AC 118 ms
41,152 KB
testcase_02 AC 122 ms
41,180 KB
testcase_03 AC 116 ms
41,176 KB
testcase_04 AC 119 ms
41,192 KB
testcase_05 AC 122 ms
41,168 KB
testcase_06 AC 123 ms
41,164 KB
testcase_07 AC 118 ms
41,172 KB
testcase_08 AC 122 ms
41,392 KB
testcase_09 AC 120 ms
41,080 KB
testcase_10 AC 114 ms
39,924 KB
testcase_11 AC 116 ms
41,040 KB
testcase_12 AC 112 ms
40,904 KB
testcase_13 AC 114 ms
41,148 KB
testcase_14 AC 104 ms
39,776 KB
testcase_15 AC 104 ms
41,064 KB
testcase_16 AC 115 ms
41,248 KB
testcase_17 AC 114 ms
41,160 KB
testcase_18 AC 114 ms
41,168 KB
testcase_19 AC 118 ms
40,804 KB
testcase_20 AC 108 ms
41,264 KB
testcase_21 AC 114 ms
41,296 KB
testcase_22 AC 117 ms
41,448 KB
testcase_23 AC 103 ms
41,044 KB
testcase_24 AC 110 ms
41,228 KB
testcase_25 AC 119 ms
41,372 KB
testcase_26 AC 107 ms
41,124 KB
testcase_27 AC 106 ms
41,300 KB
testcase_28 AC 107 ms
40,804 KB
testcase_29 AC 122 ms
41,188 KB
testcase_30 AC 120 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
import java.util.Collections;

public class No218 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        int a = s.nextInt();
        int b = s.nextInt();
        int c = s.nextInt();
        int k1 = (int)Math.ceil((double)a / b);
		int k2 = (int)Math.ceil((double)a / c);
		double k3 = ((double)2.0 * k1 / 3.0);

		if(k2 <= k3) {
			System.out.println("YES");
		}else {
			System.out.println("NO");
		}
        
    }
}
0