結果

問題 No.218 経験値1.5倍
ユーザー teritama_gteritama_g
提出日時 2015-06-16 15:41:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 757 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 50,660 KB
最終ジャッジ日時 2024-07-07 03:19:29
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,176 KB
testcase_01 AC 48 ms
50,092 KB
testcase_02 AC 46 ms
50,340 KB
testcase_03 AC 45 ms
50,004 KB
testcase_04 AC 43 ms
50,388 KB
testcase_05 AC 43 ms
50,368 KB
testcase_06 AC 43 ms
50,336 KB
testcase_07 WA -
testcase_08 AC 44 ms
50,244 KB
testcase_09 AC 44 ms
50,352 KB
testcase_10 WA -
testcase_11 AC 45 ms
50,448 KB
testcase_12 WA -
testcase_13 AC 45 ms
50,200 KB
testcase_14 AC 48 ms
49,908 KB
testcase_15 AC 45 ms
49,952 KB
testcase_16 AC 44 ms
50,660 KB
testcase_17 AC 44 ms
50,068 KB
testcase_18 WA -
testcase_19 AC 44 ms
50,372 KB
testcase_20 WA -
testcase_21 AC 43 ms
50,204 KB
testcase_22 AC 45 ms
50,068 KB
testcase_23 AC 43 ms
50,376 KB
testcase_24 WA -
testcase_25 AC 45 ms
50,124 KB
testcase_26 AC 45 ms
50,340 KB
testcase_27 AC 44 ms
50,580 KB
testcase_28 AC 44 ms
50,440 KB
testcase_29 AC 47 ms
50,284 KB
testcase_30 AC 45 ms
50,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		int N = 0;
		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 % B != 0){
       		E++;
       	}

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