結果

問題 No.218 経験値1.5倍
ユーザー teritama_gteritama_g
提出日時 2015-06-16 15:47:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 3,932 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 37,184 KB
最終ジャッジ日時 2024-12-29 15:12:40
合計ジャッジ時間 5,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
36,780 KB
testcase_01 AC 55 ms
36,900 KB
testcase_02 AC 57 ms
37,096 KB
testcase_03 AC 54 ms
37,036 KB
testcase_04 AC 54 ms
36,908 KB
testcase_05 AC 57 ms
36,660 KB
testcase_06 AC 56 ms
36,548 KB
testcase_07 AC 57 ms
36,780 KB
testcase_08 AC 56 ms
36,548 KB
testcase_09 AC 56 ms
36,660 KB
testcase_10 AC 56 ms
36,816 KB
testcase_11 AC 54 ms
36,548 KB
testcase_12 AC 56 ms
36,660 KB
testcase_13 AC 57 ms
37,072 KB
testcase_14 AC 54 ms
36,508 KB
testcase_15 AC 56 ms
36,660 KB
testcase_16 AC 57 ms
36,664 KB
testcase_17 AC 55 ms
36,988 KB
testcase_18 AC 56 ms
37,028 KB
testcase_19 AC 56 ms
37,184 KB
testcase_20 AC 54 ms
37,072 KB
testcase_21 AC 58 ms
37,072 KB
testcase_22 AC 54 ms
37,096 KB
testcase_23 AC 55 ms
37,152 KB
testcase_24 AC 55 ms
37,184 KB
testcase_25 AC 54 ms
36,900 KB
testcase_26 AC 54 ms
36,864 KB
testcase_27 AC 56 ms
37,040 KB
testcase_28 AC 57 ms
36,816 KB
testcase_29 AC 54 ms
37,112 KB
testcase_30 AC 55 ms
37,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		InputStreamReader is = new InputStreamReader(System.in);
        BufferedReader br = new BufferedReader(is);
        String X1 = br.readLine();
       	String X2 = br.readLine();
       	String X3 = br.readLine();
       	int A = Integer.parseInt(X1);
		int B = Integer.parseInt(X2);
		int C = Integer.parseInt(X3);
       	
       	int D = A / B;
       	if(A % B != 0){
       		D++;
       	}

       	int E = A / C;
       	if(A % C != 0){
       		E++;
       	}

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