結果

問題 No.218 経験値1.5倍
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-22 09:23:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 41,936 KB
最終ジャッジ日時 2024-12-29 16:05:55
合計ジャッジ時間 8,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
40,104 KB
testcase_01 AC 146 ms
41,256 KB
testcase_02 AC 150 ms
41,360 KB
testcase_03 AC 145 ms
41,652 KB
testcase_04 AC 145 ms
41,636 KB
testcase_05 AC 143 ms
41,936 KB
testcase_06 AC 143 ms
41,516 KB
testcase_07 AC 144 ms
41,292 KB
testcase_08 AC 145 ms
41,420 KB
testcase_09 AC 146 ms
41,312 KB
testcase_10 AC 132 ms
39,896 KB
testcase_11 AC 143 ms
41,020 KB
testcase_12 AC 145 ms
41,540 KB
testcase_13 AC 152 ms
41,404 KB
testcase_14 AC 139 ms
40,868 KB
testcase_15 AC 130 ms
40,124 KB
testcase_16 AC 148 ms
41,280 KB
testcase_17 AC 148 ms
41,516 KB
testcase_18 AC 146 ms
41,116 KB
testcase_19 AC 149 ms
41,628 KB
testcase_20 AC 142 ms
41,196 KB
testcase_21 AC 143 ms
41,384 KB
testcase_22 AC 135 ms
40,716 KB
testcase_23 AC 148 ms
41,304 KB
testcase_24 AC 148 ms
41,344 KB
testcase_25 AC 145 ms
41,100 KB
testcase_26 AC 140 ms
40,696 KB
testcase_27 AC 132 ms
40,148 KB
testcase_28 AC 142 ms
41,372 KB
testcase_29 AC 144 ms
41,268 KB
testcase_30 AC 142 ms
41,012 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 num1 = (a + b - 1) / b;
    int num2 = (a + c - 1) / c;
    String ans = "NO";
    if(2 * num1 >= 3 * num2) ans = "YES";
    System.out.println(ans);
  }
}
0