結果

問題 No.218 経験値1.5倍
ユーザー ffmm00ffmm00
提出日時 2015-06-01 07:23:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,932 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 41,900 KB
最終ジャッジ日時 2024-12-29 15:05:08
合計ジャッジ時間 10,009 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N218 {

	public static void main(String[] args) {
		Scanner sca = new Scanner(System.in);
		double a = sca.nextDouble();
		double b = sca.nextDouble();
		double c = sca.nextDouble();

		int n = (int) Math.ceil(a / b);
		int k = (int) Math.ceil(a / c);

		if ((n * 2 >= k * 3))
			System.out.println("YES");
		else
			System.out.println("NO");

	}
}
0