結果

問題 No.218 経験値1.5倍
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-14 22:02:37
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 4,188 ms
コンパイル使用メモリ 77,396 KB
実行使用メモリ 41,756 KB
最終ジャッジ日時 2024-12-29 15:21:03
合計ジャッジ時間 8,975 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,292 KB
testcase_01 AC 136 ms
41,284 KB
testcase_02 AC 134 ms
40,856 KB
testcase_03 AC 124 ms
41,372 KB
testcase_04 AC 134 ms
40,248 KB
testcase_05 AC 141 ms
41,452 KB
testcase_06 AC 138 ms
41,364 KB
testcase_07 AC 140 ms
41,336 KB
testcase_08 AC 129 ms
41,160 KB
testcase_09 AC 124 ms
41,268 KB
testcase_10 AC 128 ms
40,176 KB
testcase_11 AC 137 ms
41,008 KB
testcase_12 AC 124 ms
40,340 KB
testcase_13 AC 136 ms
41,236 KB
testcase_14 AC 125 ms
40,216 KB
testcase_15 AC 135 ms
41,092 KB
testcase_16 AC 138 ms
41,112 KB
testcase_17 AC 133 ms
40,012 KB
testcase_18 AC 139 ms
41,208 KB
testcase_19 AC 122 ms
40,600 KB
testcase_20 AC 130 ms
39,964 KB
testcase_21 AC 136 ms
41,756 KB
testcase_22 AC 140 ms
41,084 KB
testcase_23 AC 132 ms
40,804 KB
testcase_24 AC 139 ms
41,436 KB
testcase_25 AC 139 ms
41,556 KB
testcase_26 AC 138 ms
41,396 KB
testcase_27 AC 123 ms
41,316 KB
testcase_28 AC 139 ms
41,160 KB
testcase_29 AC 133 ms
40,756 KB
testcase_30 AC 137 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0218 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int a = in.nextInt();
		int b = in.nextInt();
		int c = in.nextInt();
		int s = (int)Math.ceil((double)a/b);
		int t = (int)Math.ceil((double)a/c);
		out.println(s*2 >= t*3 ? "YES" : "NO");
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0