結果

問題 No.218 経験値1.5倍
ユーザー koukonkokoukonko
提出日時 2015-12-17 13:44:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 2,300 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 50,504 KB
最終ジャッジ日時 2024-09-16 07:31:32
合計ジャッジ時間 4,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,352 KB
testcase_01 AC 51 ms
50,264 KB
testcase_02 AC 50 ms
50,408 KB
testcase_03 AC 51 ms
49,940 KB
testcase_04 AC 52 ms
50,340 KB
testcase_05 AC 51 ms
49,928 KB
testcase_06 AC 52 ms
50,408 KB
testcase_07 AC 53 ms
50,352 KB
testcase_08 AC 52 ms
50,332 KB
testcase_09 AC 52 ms
49,876 KB
testcase_10 AC 53 ms
50,312 KB
testcase_11 AC 53 ms
50,300 KB
testcase_12 AC 52 ms
50,088 KB
testcase_13 AC 52 ms
50,324 KB
testcase_14 AC 53 ms
49,964 KB
testcase_15 WA -
testcase_16 AC 52 ms
50,328 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 51 ms
50,328 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 51 ms
50,092 KB
testcase_25 WA -
testcase_26 AC 52 ms
50,352 KB
testcase_27 WA -
testcase_28 AC 53 ms
50,324 KB
testcase_29 AC 52 ms
50,068 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));

		try {
			int a = Integer.parseInt(read.readLine());
			int b = Integer.parseInt(read.readLine());
			int c = Integer.parseInt(read.readLine());

			double normal = (a * 1.0) / b;
			if (normal % 1 > 0) {
				normal = (int) (normal + 1);
			}
			normal *= 2d / 3d;

			double campaign = normal * c;

			if (a > campaign) {
				System.out.println("NO");
			} else {
				System.out.println("YES");
			}

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0