結果

問題 No.218 経験値1.5倍
ユーザー mikoto1357mikoto1357
提出日時 2015-05-29 22:27:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 387 bytes
コンパイル時間 2,878 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 54,424 KB
最終ジャッジ日時 2024-07-06 11:16:47
合計ジャッジ時間 7,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,844 KB
testcase_01 AC 109 ms
52,540 KB
testcase_02 AC 114 ms
53,800 KB
testcase_03 AC 99 ms
52,480 KB
testcase_04 AC 113 ms
54,100 KB
testcase_05 AC 105 ms
52,884 KB
testcase_06 AC 121 ms
53,888 KB
testcase_07 AC 113 ms
54,088 KB
testcase_08 AC 102 ms
52,860 KB
testcase_09 AC 117 ms
53,824 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 100 ms
52,792 KB
testcase_14 AC 116 ms
53,836 KB
testcase_15 AC 106 ms
52,816 KB
testcase_16 WA -
testcase_17 AC 104 ms
52,488 KB
testcase_18 AC 117 ms
54,112 KB
testcase_19 AC 110 ms
54,032 KB
testcase_20 AC 102 ms
52,776 KB
testcase_21 AC 101 ms
52,944 KB
testcase_22 AC 116 ms
53,928 KB
testcase_23 AC 115 ms
53,992 KB
testcase_24 AC 115 ms
53,996 KB
testcase_25 AC 112 ms
53,936 KB
testcase_26 WA -
testcase_27 AC 113 ms
54,024 KB
testcase_28 WA -
testcase_29 AC 122 ms
53,832 KB
testcase_30 AC 110 ms
52,928 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) > bsozai * 2 / 3)	System.out.println("NO");
		else									System.out.println("YES");
	}
}
0