結果

問題 No.218 経験値1.5倍
ユーザー kou6839kou6839
提出日時 2015-05-30 23:12:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-09 09:20:43
合計ジャッジ時間 6,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,068 KB
testcase_01 AC 109 ms
53,752 KB
testcase_02 AC 103 ms
53,952 KB
testcase_03 AC 112 ms
54,092 KB
testcase_04 AC 111 ms
53,340 KB
testcase_05 AC 124 ms
54,028 KB
testcase_06 AC 103 ms
53,004 KB
testcase_07 AC 103 ms
52,828 KB
testcase_08 AC 103 ms
53,028 KB
testcase_09 AC 110 ms
53,980 KB
testcase_10 AC 114 ms
54,144 KB
testcase_11 AC 112 ms
54,316 KB
testcase_12 AC 104 ms
52,964 KB
testcase_13 AC 104 ms
52,652 KB
testcase_14 AC 100 ms
52,764 KB
testcase_15 AC 114 ms
54,204 KB
testcase_16 AC 111 ms
54,080 KB
testcase_17 AC 99 ms
52,852 KB
testcase_18 AC 114 ms
54,284 KB
testcase_19 AC 115 ms
53,864 KB
testcase_20 AC 111 ms
54,160 KB
testcase_21 AC 113 ms
53,792 KB
testcase_22 AC 110 ms
54,140 KB
testcase_23 AC 116 ms
54,096 KB
testcase_24 AC 103 ms
52,584 KB
testcase_25 AC 112 ms
53,968 KB
testcase_26 AC 100 ms
52,552 KB
testcase_27 AC 117 ms
54,060 KB
testcase_28 AC 101 ms
52,952 KB
testcase_29 AC 124 ms
53,908 KB
testcase_30 AC 119 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        double aa = Math.ceil(a*1.0/b);
        double bb = Math.ceil(1.0*a/c);
        if(aa*2/3>=bb){
        	System.out.println("YES");
        }else{
        	System.out.println("NO");
        }
    }
}
0