結果

問題 No.218 経験値1.5倍
ユーザー ぴろずぴろず
提出日時 2015-05-29 22:24:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 2,596 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-06-09 09:16:47
合計ジャッジ時間 7,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,472 KB
testcase_01 AC 126 ms
41,168 KB
testcase_02 AC 122 ms
41,424 KB
testcase_03 AC 124 ms
41,236 KB
testcase_04 AC 128 ms
41,216 KB
testcase_05 AC 128 ms
41,332 KB
testcase_06 AC 126 ms
41,328 KB
testcase_07 AC 128 ms
41,148 KB
testcase_08 AC 117 ms
40,956 KB
testcase_09 AC 132 ms
41,352 KB
testcase_10 AC 132 ms
41,468 KB
testcase_11 AC 134 ms
41,292 KB
testcase_12 AC 122 ms
41,388 KB
testcase_13 AC 125 ms
41,420 KB
testcase_14 AC 126 ms
41,284 KB
testcase_15 AC 123 ms
40,908 KB
testcase_16 AC 133 ms
41,344 KB
testcase_17 AC 129 ms
41,128 KB
testcase_18 AC 130 ms
41,212 KB
testcase_19 AC 131 ms
41,384 KB
testcase_20 AC 125 ms
41,152 KB
testcase_21 AC 122 ms
41,220 KB
testcase_22 AC 123 ms
39,892 KB
testcase_23 AC 132 ms
41,164 KB
testcase_24 AC 127 ms
41,152 KB
testcase_25 AC 129 ms
40,984 KB
testcase_26 AC 120 ms
41,300 KB
testcase_27 AC 129 ms
41,460 KB
testcase_28 AC 127 ms
41,088 KB
testcase_29 AC 130 ms
41,216 KB
testcase_30 AC 121 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no218;

import java.util.Scanner;

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

}
0