結果

問題 No.218 経験値1.5倍
ユーザー 37zigen37zigen
提出日時 2016-03-30 14:07:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-06-09 09:32:54
合計ジャッジ時間 7,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,552 KB
testcase_01 AC 148 ms
41,480 KB
testcase_02 AC 147 ms
41,436 KB
testcase_03 AC 146 ms
41,684 KB
testcase_04 AC 144 ms
41,552 KB
testcase_05 AC 147 ms
41,384 KB
testcase_06 AC 149 ms
41,432 KB
testcase_07 AC 145 ms
41,600 KB
testcase_08 AC 150 ms
41,972 KB
testcase_09 AC 148 ms
41,424 KB
testcase_10 AC 145 ms
41,600 KB
testcase_11 AC 132 ms
40,512 KB
testcase_12 AC 147 ms
41,420 KB
testcase_13 AC 144 ms
41,448 KB
testcase_14 AC 142 ms
41,260 KB
testcase_15 AC 151 ms
41,864 KB
testcase_16 AC 132 ms
41,008 KB
testcase_17 AC 148 ms
41,808 KB
testcase_18 AC 147 ms
41,300 KB
testcase_19 AC 146 ms
41,612 KB
testcase_20 AC 151 ms
41,532 KB
testcase_21 AC 149 ms
41,724 KB
testcase_22 AC 148 ms
41,480 KB
testcase_23 AC 147 ms
41,288 KB
testcase_24 AC 147 ms
41,684 KB
testcase_25 AC 142 ms
41,680 KB
testcase_26 AC 149 ms
41,520 KB
testcase_27 AC 148 ms
41,520 KB
testcase_28 AC 147 ms
41,716 KB
testcase_29 AC 145 ms
41,608 KB
testcase_30 AC 143 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder218;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		double a,b,c;
		a=sc.nextDouble();
		b=sc.nextDouble();
		c=sc.nextDouble();
		//通常必要経験値 a/b
		//キャンペーン中 a/c
		//   a/c<=a/b*2/3
		//   1/c<=1/b*2/3
		//   3b<=2c
		
		double d,e;
		if(a/c!=(int)(a/c)){
			d=(int)(a/c)+1;
		}else{
			d=a/c;
		}
		if(a/b!=(int)(a/b)){
			e=(int)(a/b)+1;
		}else{
			e=a/b;
		}
		if(3*d<=2*e){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0