結果

問題 No.218 経験値1.5倍
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-14 22:02:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 2,936 ms
コンパイル使用メモリ 77,988 KB
実行使用メモリ 41,564 KB
最終ジャッジ日時 2024-06-09 09:28:12
合計ジャッジ時間 7,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,564 KB
testcase_01 AC 119 ms
41,552 KB
testcase_02 AC 103 ms
41,400 KB
testcase_03 AC 111 ms
41,172 KB
testcase_04 AC 115 ms
41,232 KB
testcase_05 AC 112 ms
40,896 KB
testcase_06 AC 116 ms
41,476 KB
testcase_07 AC 98 ms
39,972 KB
testcase_08 AC 112 ms
41,328 KB
testcase_09 AC 102 ms
40,992 KB
testcase_10 AC 122 ms
40,072 KB
testcase_11 AC 114 ms
41,376 KB
testcase_12 AC 104 ms
41,152 KB
testcase_13 AC 103 ms
41,056 KB
testcase_14 AC 105 ms
41,424 KB
testcase_15 AC 114 ms
40,272 KB
testcase_16 AC 113 ms
41,368 KB
testcase_17 AC 124 ms
41,000 KB
testcase_18 AC 122 ms
41,480 KB
testcase_19 AC 105 ms
41,352 KB
testcase_20 AC 114 ms
41,164 KB
testcase_21 AC 111 ms
41,076 KB
testcase_22 AC 113 ms
39,992 KB
testcase_23 AC 112 ms
41,352 KB
testcase_24 AC 117 ms
41,240 KB
testcase_25 AC 103 ms
41,028 KB
testcase_26 AC 115 ms
41,284 KB
testcase_27 AC 116 ms
41,092 KB
testcase_28 AC 118 ms
41,296 KB
testcase_29 AC 118 ms
41,080 KB
testcase_30 AC 116 ms
40,948 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