結果

問題 No.218 経験値1.5倍
ユーザー spacenautspacenaut
提出日時 2016-05-22 18:03:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-12-29 15:38:26
合計ジャッジ時間 7,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,120 KB
testcase_01 AC 139 ms
40,436 KB
testcase_02 AC 135 ms
40,964 KB
testcase_03 AC 138 ms
41,400 KB
testcase_04 AC 134 ms
40,844 KB
testcase_05 AC 136 ms
41,084 KB
testcase_06 AC 140 ms
40,816 KB
testcase_07 AC 137 ms
41,236 KB
testcase_08 AC 141 ms
41,264 KB
testcase_09 AC 137 ms
40,984 KB
testcase_10 AC 143 ms
41,124 KB
testcase_11 AC 136 ms
40,972 KB
testcase_12 AC 135 ms
41,060 KB
testcase_13 AC 135 ms
41,164 KB
testcase_14 AC 137 ms
41,444 KB
testcase_15 AC 135 ms
41,104 KB
testcase_16 AC 136 ms
41,124 KB
testcase_17 AC 137 ms
41,072 KB
testcase_18 AC 133 ms
40,124 KB
testcase_19 AC 136 ms
41,120 KB
testcase_20 AC 141 ms
41,124 KB
testcase_21 AC 139 ms
41,452 KB
testcase_22 AC 128 ms
39,932 KB
testcase_23 AC 141 ms
41,216 KB
testcase_24 AC 139 ms
41,324 KB
testcase_25 AC 139 ms
41,260 KB
testcase_26 AC 138 ms
41,088 KB
testcase_27 AC 137 ms
41,080 KB
testcase_28 AC 137 ms
40,984 KB
testcase_29 AC 134 ms
41,132 KB
testcase_30 AC 129 ms
39,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0218{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		double bb, cc;

		if(a % b == 0){
			bb = a / b;
		}else{
			bb = a / b + 1;
		}

		if(a % c == 0){
			cc = a / c;
		}else{
			cc = a / c + 1;
		}

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