結果

問題 No.218 経験値1.5倍
ユーザー teritama_gteritama_g
提出日時 2015-06-16 15:47:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 1,879 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 50,564 KB
最終ジャッジ日時 2024-06-09 09:24:47
合計ジャッジ時間 4,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,248 KB
testcase_01 AC 48 ms
50,564 KB
testcase_02 AC 46 ms
50,212 KB
testcase_03 AC 46 ms
50,196 KB
testcase_04 AC 47 ms
50,284 KB
testcase_05 AC 47 ms
50,456 KB
testcase_06 AC 48 ms
50,508 KB
testcase_07 AC 46 ms
49,992 KB
testcase_08 AC 47 ms
49,836 KB
testcase_09 AC 48 ms
50,196 KB
testcase_10 AC 46 ms
50,288 KB
testcase_11 AC 49 ms
50,092 KB
testcase_12 AC 48 ms
50,452 KB
testcase_13 AC 48 ms
50,276 KB
testcase_14 AC 46 ms
50,124 KB
testcase_15 AC 47 ms
49,816 KB
testcase_16 AC 49 ms
50,232 KB
testcase_17 AC 48 ms
50,360 KB
testcase_18 AC 46 ms
50,244 KB
testcase_19 AC 47 ms
49,920 KB
testcase_20 AC 47 ms
50,308 KB
testcase_21 AC 49 ms
49,784 KB
testcase_22 AC 51 ms
50,544 KB
testcase_23 AC 48 ms
50,316 KB
testcase_24 AC 47 ms
50,408 KB
testcase_25 AC 47 ms
50,392 KB
testcase_26 AC 47 ms
49,976 KB
testcase_27 AC 47 ms
50,456 KB
testcase_28 AC 47 ms
49,900 KB
testcase_29 AC 46 ms
49,900 KB
testcase_30 AC 47 ms
50,048 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