結果

問題 No.218 経験値1.5倍
ユーザー hikari2004hikari2004
提出日時 2016-04-22 13:43:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 3,625 ms
コンパイル使用メモリ 78,312 KB
実行使用メモリ 54,632 KB
最終ジャッジ日時 2024-06-09 09:33:27
合計ジャッジ時間 7,489 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,204 KB
testcase_01 AC 125 ms
53,580 KB
testcase_02 AC 123 ms
54,440 KB
testcase_03 AC 122 ms
53,892 KB
testcase_04 AC 119 ms
53,448 KB
testcase_05 AC 125 ms
54,408 KB
testcase_06 AC 131 ms
54,188 KB
testcase_07 AC 120 ms
54,264 KB
testcase_08 AC 120 ms
54,632 KB
testcase_09 AC 125 ms
54,344 KB
testcase_10 AC 120 ms
54,216 KB
testcase_11 AC 121 ms
54,036 KB
testcase_12 AC 135 ms
54,308 KB
testcase_13 AC 126 ms
54,316 KB
testcase_14 AC 119 ms
53,604 KB
testcase_15 AC 109 ms
53,472 KB
testcase_16 AC 117 ms
54,240 KB
testcase_17 AC 122 ms
54,400 KB
testcase_18 AC 121 ms
54,104 KB
testcase_19 AC 117 ms
53,800 KB
testcase_20 AC 126 ms
54,084 KB
testcase_21 AC 114 ms
53,636 KB
testcase_22 AC 122 ms
53,592 KB
testcase_23 AC 124 ms
54,272 KB
testcase_24 AC 125 ms
54,300 KB
testcase_25 AC 122 ms
54,444 KB
testcase_26 AC 124 ms
53,788 KB
testcase_27 AC 134 ms
54,476 KB
testcase_28 AC 123 ms
54,324 KB
testcase_29 AC 119 ms
54,112 KB
testcase_30 AC 110 ms
53,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;

import java.util.Scanner;

public class No_218 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		double c = sc.nextDouble();

		int normal = (int)Math.ceil(a/b);
		int success = (int)Math.ceil(a/c);

		if(2 * normal >= 3 * success){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0