結果

問題 No.218 経験値1.5倍
ユーザー fal_rndfal_rnd
提出日時 2016-11-29 21:47:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 70,868 KB
実行使用メモリ 57,516 KB
最終ジャッジ日時 2023-08-28 14:28:54
合計ジャッジ時間 6,818 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,552 KB
testcase_01 AC 125 ms
55,536 KB
testcase_02 AC 120 ms
55,664 KB
testcase_03 AC 120 ms
55,524 KB
testcase_04 AC 120 ms
55,648 KB
testcase_05 AC 120 ms
55,520 KB
testcase_06 AC 118 ms
56,336 KB
testcase_07 AC 119 ms
55,816 KB
testcase_08 AC 121 ms
55,248 KB
testcase_09 AC 121 ms
56,060 KB
testcase_10 AC 120 ms
55,660 KB
testcase_11 AC 120 ms
55,508 KB
testcase_12 AC 121 ms
55,532 KB
testcase_13 AC 120 ms
55,744 KB
testcase_14 AC 120 ms
55,680 KB
testcase_15 AC 121 ms
57,516 KB
testcase_16 AC 122 ms
55,912 KB
testcase_17 AC 121 ms
56,108 KB
testcase_18 AC 123 ms
55,768 KB
testcase_19 AC 123 ms
55,400 KB
testcase_20 AC 124 ms
55,768 KB
testcase_21 AC 124 ms
55,832 KB
testcase_22 AC 123 ms
55,568 KB
testcase_23 AC 121 ms
55,500 KB
testcase_24 AC 124 ms
55,508 KB
testcase_25 AC 120 ms
55,312 KB
testcase_26 AC 121 ms
56,164 KB
testcase_27 AC 123 ms
55,620 KB
testcase_28 AC 122 ms
55,820 KB
testcase_29 AC 121 ms
55,404 KB
testcase_30 AC 120 ms
55,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int
			a=s.nextInt(),
			b=s.nextInt(),
			c=s.nextInt(),

			nb = (int)Math.ceil(1.0*a/b),
			nc = (int)Math.ceil(1.0*a/c);

		System.out.println((nb*2>=nc*3)?"YES":"NO");

	}
}
0