結果

問題 No.218 経験値1.5倍
ユーザー htensaihtensai
提出日時 2019-12-10 14:41:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-06-24 01:49:25
合計ジャッジ時間 7,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,468 KB
testcase_01 AC 132 ms
41,360 KB
testcase_02 AC 119 ms
40,404 KB
testcase_03 AC 117 ms
40,044 KB
testcase_04 AC 137 ms
41,068 KB
testcase_05 AC 136 ms
41,612 KB
testcase_06 AC 132 ms
41,464 KB
testcase_07 AC 132 ms
41,540 KB
testcase_08 AC 133 ms
41,628 KB
testcase_09 AC 133 ms
41,756 KB
testcase_10 AC 131 ms
41,184 KB
testcase_11 AC 130 ms
41,364 KB
testcase_12 AC 135 ms
41,564 KB
testcase_13 AC 120 ms
40,348 KB
testcase_14 AC 133 ms
41,104 KB
testcase_15 AC 132 ms
41,376 KB
testcase_16 AC 119 ms
40,516 KB
testcase_17 AC 134 ms
41,704 KB
testcase_18 AC 133 ms
41,088 KB
testcase_19 AC 142 ms
40,996 KB
testcase_20 AC 149 ms
41,616 KB
testcase_21 AC 151 ms
41,684 KB
testcase_22 AC 145 ms
41,440 KB
testcase_23 AC 146 ms
40,948 KB
testcase_24 AC 149 ms
41,532 KB
testcase_25 AC 143 ms
41,492 KB
testcase_26 AC 132 ms
41,148 KB
testcase_27 AC 129 ms
41,324 KB
testcase_28 AC 131 ms
41,092 KB
testcase_29 AC 119 ms
40,256 KB
testcase_30 AC 117 ms
40,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        int bb = (a + b - 1) / b;
        int cc = (a + c - 1) / c;
        if (bb * 2 / 3 >= cc) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
  }
}
0