結果

問題 No.218 経験値1.5倍
ユーザー spacenautspacenaut
提出日時 2016-05-22 18:03:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-06-09 09:33:51
合計ジャッジ時間 7,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,308 KB
testcase_01 AC 131 ms
41,484 KB
testcase_02 AC 130 ms
41,308 KB
testcase_03 AC 134 ms
41,160 KB
testcase_04 AC 134 ms
40,996 KB
testcase_05 AC 132 ms
41,216 KB
testcase_06 AC 133 ms
41,148 KB
testcase_07 AC 136 ms
41,160 KB
testcase_08 AC 131 ms
41,480 KB
testcase_09 AC 135 ms
41,184 KB
testcase_10 AC 140 ms
41,224 KB
testcase_11 AC 136 ms
41,068 KB
testcase_12 AC 142 ms
41,648 KB
testcase_13 AC 135 ms
41,096 KB
testcase_14 AC 137 ms
41,296 KB
testcase_15 AC 138 ms
41,292 KB
testcase_16 AC 136 ms
41,252 KB
testcase_17 AC 132 ms
41,140 KB
testcase_18 AC 134 ms
41,344 KB
testcase_19 AC 134 ms
41,460 KB
testcase_20 AC 135 ms
41,388 KB
testcase_21 AC 133 ms
41,036 KB
testcase_22 AC 131 ms
41,140 KB
testcase_23 AC 133 ms
41,292 KB
testcase_24 AC 131 ms
41,052 KB
testcase_25 AC 132 ms
41,420 KB
testcase_26 AC 133 ms
41,008 KB
testcase_27 AC 132 ms
41,216 KB
testcase_28 AC 132 ms
41,016 KB
testcase_29 AC 132 ms
40,952 KB
testcase_30 AC 131 ms
41,292 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