結果

問題 No.218 経験値1.5倍
ユーザー mikoto1357mikoto1357
提出日時 2015-05-29 22:34:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 3,221 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-06-09 09:19:04
合計ジャッジ時間 8,283 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,144 KB
testcase_01 AC 131 ms
41,604 KB
testcase_02 AC 130 ms
41,356 KB
testcase_03 AC 131 ms
41,132 KB
testcase_04 AC 117 ms
40,192 KB
testcase_05 AC 132 ms
41,184 KB
testcase_06 AC 133 ms
41,272 KB
testcase_07 AC 134 ms
41,440 KB
testcase_08 AC 132 ms
41,288 KB
testcase_09 AC 117 ms
40,280 KB
testcase_10 AC 132 ms
41,336 KB
testcase_11 AC 119 ms
40,004 KB
testcase_12 AC 118 ms
40,128 KB
testcase_13 AC 132 ms
41,368 KB
testcase_14 AC 130 ms
41,460 KB
testcase_15 AC 132 ms
41,432 KB
testcase_16 AC 130 ms
41,376 KB
testcase_17 AC 134 ms
41,176 KB
testcase_18 AC 132 ms
41,640 KB
testcase_19 AC 132 ms
41,276 KB
testcase_20 AC 128 ms
41,256 KB
testcase_21 AC 131 ms
41,160 KB
testcase_22 AC 130 ms
41,432 KB
testcase_23 AC 128 ms
41,376 KB
testcase_24 AC 117 ms
40,128 KB
testcase_25 AC 128 ms
41,360 KB
testcase_26 AC 129 ms
41,420 KB
testcase_27 AC 129 ms
41,296 KB
testcase_28 AC 129 ms
41,360 KB
testcase_29 AC 134 ms
41,564 KB
testcase_30 AC 133 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder218{
	public static void main(String[] args){
		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		int c = scan.nextInt();
		double bsozai = a / (b + 0.0);
		double csozai = a / (c + 0.0);
		if(Math.ceil(csozai) > (Math.ceil(bsozai) * 2 / 3))	System.out.println("NO");
		else												System.out.println("YES");
	}
}
0