結果

問題 No.218 経験値1.5倍
ユーザー k_kadorak_kadora
提出日時 2015-06-10 22:36:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 3,920 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-12-29 15:08:08
合計ジャッジ時間 9,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,276 KB
testcase_01 AC 142 ms
41,024 KB
testcase_02 AC 132 ms
40,268 KB
testcase_03 AC 143 ms
41,408 KB
testcase_04 AC 144 ms
41,412 KB
testcase_05 AC 148 ms
41,140 KB
testcase_06 AC 147 ms
41,112 KB
testcase_07 AC 140 ms
40,900 KB
testcase_08 AC 152 ms
41,164 KB
testcase_09 AC 146 ms
41,312 KB
testcase_10 AC 144 ms
41,092 KB
testcase_11 AC 138 ms
40,920 KB
testcase_12 AC 130 ms
39,876 KB
testcase_13 AC 128 ms
41,188 KB
testcase_14 AC 140 ms
41,532 KB
testcase_15 AC 139 ms
41,136 KB
testcase_16 AC 138 ms
40,724 KB
testcase_17 AC 146 ms
41,272 KB
testcase_18 AC 143 ms
41,080 KB
testcase_19 AC 141 ms
41,060 KB
testcase_20 AC 144 ms
41,228 KB
testcase_21 AC 141 ms
41,124 KB
testcase_22 AC 134 ms
40,016 KB
testcase_23 AC 131 ms
39,984 KB
testcase_24 AC 143 ms
41,104 KB
testcase_25 AC 142 ms
41,088 KB
testcase_26 AC 145 ms
41,000 KB
testcase_27 AC 143 ms
41,192 KB
testcase_28 AC 146 ms
41,320 KB
testcase_29 AC 141 ms
41,536 KB
testcase_30 AC 143 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Exp{
	public static void main(String[] arg){
		double ca;
		int temp,cneed,a,b,c;
		Scanner sc = new Scanner(System.in);
		a = sc.nextInt();
		b = sc.nextInt();
		c = sc.nextInt();
		temp = (int)a / (int)b;
		if(a > b * temp)temp++;
		ca = (double)temp * 2 /3;
		cneed = a / c;
		if(a > c * cneed)cneed++;
		if((double)cneed <= ca){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0