結果

問題 No.218 経験値1.5倍
ユーザー k_kadorak_kadora
提出日時 2015-06-10 22:36:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 3,493 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-06-09 09:22:10
合計ジャッジ時間 8,902 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,420 KB
testcase_01 AC 129 ms
41,376 KB
testcase_02 AC 129 ms
41,452 KB
testcase_03 AC 133 ms
41,472 KB
testcase_04 AC 131 ms
41,416 KB
testcase_05 AC 130 ms
41,692 KB
testcase_06 AC 134 ms
41,592 KB
testcase_07 AC 132 ms
41,492 KB
testcase_08 AC 131 ms
41,416 KB
testcase_09 AC 131 ms
41,176 KB
testcase_10 AC 130 ms
41,128 KB
testcase_11 AC 119 ms
40,012 KB
testcase_12 AC 128 ms
41,308 KB
testcase_13 AC 130 ms
41,240 KB
testcase_14 AC 129 ms
41,504 KB
testcase_15 AC 132 ms
41,720 KB
testcase_16 AC 132 ms
41,280 KB
testcase_17 AC 132 ms
41,136 KB
testcase_18 AC 129 ms
41,372 KB
testcase_19 AC 128 ms
41,356 KB
testcase_20 AC 127 ms
41,508 KB
testcase_21 AC 133 ms
41,432 KB
testcase_22 AC 133 ms
41,112 KB
testcase_23 AC 132 ms
41,548 KB
testcase_24 AC 131 ms
41,364 KB
testcase_25 AC 141 ms
41,444 KB
testcase_26 AC 144 ms
41,772 KB
testcase_27 AC 136 ms
41,820 KB
testcase_28 AC 122 ms
41,276 KB
testcase_29 AC 142 ms
41,308 KB
testcase_30 AC 139 ms
41,776 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