結果

問題 No.218 経験値1.5倍
ユーザー jimanojimano
提出日時 2018-02-11 12:53:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 815 bytes
コンパイル時間 3,578 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 37,800 KB
最終ジャッジ日時 2024-11-15 20:08:44
合計ジャッジ時間 6,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,628 KB
testcase_01 AC 53 ms
37,304 KB
testcase_02 AC 55 ms
37,692 KB
testcase_03 AC 54 ms
37,544 KB
testcase_04 AC 54 ms
37,720 KB
testcase_05 AC 54 ms
37,760 KB
testcase_06 WA -
testcase_07 AC 53 ms
37,716 KB
testcase_08 AC 53 ms
37,516 KB
testcase_09 WA -
testcase_10 AC 55 ms
37,392 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
37,312 KB
testcase_14 WA -
testcase_15 AC 53 ms
37,460 KB
testcase_16 WA -
testcase_17 AC 54 ms
37,692 KB
testcase_18 AC 52 ms
37,056 KB
testcase_19 AC 52 ms
37,188 KB
testcase_20 AC 54 ms
37,624 KB
testcase_21 AC 57 ms
37,720 KB
testcase_22 AC 54 ms
37,700 KB
testcase_23 AC 55 ms
37,720 KB
testcase_24 AC 54 ms
37,752 KB
testcase_25 AC 53 ms
37,744 KB
testcase_26 AC 53 ms
37,432 KB
testcase_27 AC 58 ms
37,800 KB
testcase_28 WA -
testcase_29 AC 54 ms
37,576 KB
testcase_30 AC 54 ms
37,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.math.RoundingMode;

public class No0218 {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		double a = Double.parseDouble(br.readLine());
		int b = Integer.parseInt(br.readLine());
		int c = Integer.parseInt(br.readLine());
		BigDecimal cntUp = new BigDecimal(a / b).setScale(0, RoundingMode.UP);
		BigDecimal cntUp_campaign = new BigDecimal(a / c).setScale(0, RoundingMode.UP);
		// ⇔通常時の2/3の割合で足りているか
		int ret = cntUp.compareTo(cntUp_campaign.multiply(new BigDecimal("1.5")));				
		
		System.out.println(ret >= 1 ? "YES" : "NO");
	}
}
0