結果

問題 No.218 経験値1.5倍
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 21:03:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 3,426 ms
コンパイル使用メモリ 83,500 KB
実行使用メモリ 54,224 KB
最終ジャッジ日時 2024-06-09 09:38:34
合計ジャッジ時間 6,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,188 KB
testcase_01 AC 113 ms
54,048 KB
testcase_02 AC 108 ms
53,548 KB
testcase_03 AC 116 ms
54,144 KB
testcase_04 AC 116 ms
53,932 KB
testcase_05 AC 103 ms
53,016 KB
testcase_06 AC 114 ms
53,768 KB
testcase_07 AC 105 ms
52,980 KB
testcase_08 AC 115 ms
54,048 KB
testcase_09 AC 116 ms
53,980 KB
testcase_10 AC 117 ms
54,068 KB
testcase_11 AC 104 ms
52,960 KB
testcase_12 AC 114 ms
53,948 KB
testcase_13 AC 115 ms
54,104 KB
testcase_14 AC 119 ms
54,056 KB
testcase_15 AC 114 ms
54,152 KB
testcase_16 AC 114 ms
54,032 KB
testcase_17 AC 103 ms
53,036 KB
testcase_18 AC 114 ms
54,012 KB
testcase_19 AC 115 ms
53,860 KB
testcase_20 AC 101 ms
52,700 KB
testcase_21 AC 104 ms
52,644 KB
testcase_22 AC 117 ms
54,224 KB
testcase_23 AC 121 ms
54,064 KB
testcase_24 AC 116 ms
54,064 KB
testcase_25 AC 117 ms
54,048 KB
testcase_26 AC 108 ms
52,908 KB
testcase_27 AC 109 ms
53,088 KB
testcase_28 AC 113 ms
53,872 KB
testcase_29 AC 113 ms
54,048 KB
testcase_30 AC 116 ms
54,144 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 no = (int)Math.ceil( (double)a/b) ;
        int ca = (int)Math.ceil( (double)a/c) ;
        double r = (double)no/ca;
        if(r>=1.5){
            System.out.println("YES");
        }else{
            System.out.println("NO");
        }
    }
}
0