結果

問題 No.218 経験値1.5倍
ユーザー yagi2yagi2
提出日時 2017-04-21 12:18:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 433 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 75,528 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-07-20 05:01:23
合計ジャッジ時間 7,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,164 KB
testcase_01 AC 131 ms
40,864 KB
testcase_02 AC 131 ms
41,112 KB
testcase_03 AC 132 ms
41,364 KB
testcase_04 AC 130 ms
41,100 KB
testcase_05 AC 129 ms
40,772 KB
testcase_06 AC 130 ms
41,440 KB
testcase_07 WA -
testcase_08 AC 129 ms
41,172 KB
testcase_09 AC 130 ms
40,916 KB
testcase_10 AC 131 ms
41,108 KB
testcase_11 AC 127 ms
41,732 KB
testcase_12 AC 130 ms
40,996 KB
testcase_13 AC 132 ms
41,288 KB
testcase_14 AC 131 ms
41,236 KB
testcase_15 WA -
testcase_16 AC 133 ms
41,168 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 132 ms
40,908 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 131 ms
41,480 KB
testcase_25 WA -
testcase_26 AC 127 ms
41,272 KB
testcase_27 WA -
testcase_28 AC 129 ms
41,400 KB
testcase_29 AC 131 ms
40,904 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long a = Long.parseLong(sc.next());
        long b = Long.parseLong(sc.next());
        long c = Long.parseLong(sc.next());
        
        System.out.println(((int)Math.ceil((double)a / c) <= (int)Math.ceil((double)(int)Math.ceil((double)a / b) * (2.0 / 3.0)))? "YES" : "NO");
    }
}
0