結果

問題 No.218 経験値1.5倍
ユーザー teritama_gteritama_g
提出日時 2015-06-16 15:47:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 5,398 ms
コンパイル使用メモリ 71,268 KB
実行使用メモリ 49,504 KB
最終ジャッジ日時 2023-08-28 14:12:38
合計ジャッジ時間 6,364 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
48,964 KB
testcase_01 AC 41 ms
49,312 KB
testcase_02 AC 41 ms
49,388 KB
testcase_03 AC 41 ms
49,164 KB
testcase_04 AC 41 ms
49,288 KB
testcase_05 AC 42 ms
49,132 KB
testcase_06 AC 43 ms
49,164 KB
testcase_07 AC 42 ms
49,172 KB
testcase_08 AC 42 ms
49,092 KB
testcase_09 AC 42 ms
49,288 KB
testcase_10 AC 42 ms
49,272 KB
testcase_11 AC 42 ms
49,504 KB
testcase_12 AC 41 ms
49,152 KB
testcase_13 AC 42 ms
49,204 KB
testcase_14 AC 41 ms
49,092 KB
testcase_15 AC 42 ms
49,080 KB
testcase_16 AC 41 ms
49,292 KB
testcase_17 AC 42 ms
49,008 KB
testcase_18 AC 42 ms
49,064 KB
testcase_19 AC 42 ms
49,068 KB
testcase_20 AC 41 ms
48,948 KB
testcase_21 AC 41 ms
49,296 KB
testcase_22 AC 42 ms
48,928 KB
testcase_23 AC 43 ms
49,084 KB
testcase_24 AC 42 ms
49,132 KB
testcase_25 AC 42 ms
49,176 KB
testcase_26 AC 43 ms
49,156 KB
testcase_27 AC 42 ms
49,164 KB
testcase_28 AC 42 ms
49,160 KB
testcase_29 AC 42 ms
49,148 KB
testcase_30 AC 41 ms
49,076 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