結果

問題 No.218 経験値1.5倍
ユーザー GrenacheGrenache
提出日時 2015-05-29 22:25:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 2,852 ms
コンパイル使用メモリ 75,540 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-06-09 09:17:07
合計ジャッジ時間 7,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,140 KB
testcase_01 AC 112 ms
41,152 KB
testcase_02 AC 102 ms
41,432 KB
testcase_03 AC 112 ms
41,420 KB
testcase_04 AC 112 ms
41,476 KB
testcase_05 AC 114 ms
41,308 KB
testcase_06 AC 117 ms
40,268 KB
testcase_07 AC 108 ms
41,676 KB
testcase_08 AC 120 ms
41,360 KB
testcase_09 AC 111 ms
41,260 KB
testcase_10 AC 110 ms
41,424 KB
testcase_11 AC 119 ms
41,228 KB
testcase_12 AC 102 ms
40,952 KB
testcase_13 AC 114 ms
40,008 KB
testcase_14 AC 115 ms
41,504 KB
testcase_15 AC 112 ms
41,424 KB
testcase_16 AC 102 ms
41,388 KB
testcase_17 AC 114 ms
41,600 KB
testcase_18 AC 117 ms
41,288 KB
testcase_19 AC 106 ms
41,324 KB
testcase_20 AC 110 ms
41,460 KB
testcase_21 AC 112 ms
41,524 KB
testcase_22 AC 100 ms
41,248 KB
testcase_23 AC 122 ms
41,312 KB
testcase_24 AC 104 ms
41,424 KB
testcase_25 AC 112 ms
41,328 KB
testcase_26 AC 113 ms
41,600 KB
testcase_27 AC 104 ms
41,620 KB
testcase_28 AC 103 ms
41,424 KB
testcase_29 AC 116 ms
41,432 KB
testcase_30 AC 120 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder218 {

	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 n = (a + b - 1) / b;
		int m = (a + c - 1) / c;
		
		if (n * 2 >= m * 3) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
		
		sc.close();
	}
}
0