結果

問題 No.218 経験値1.5倍
ユーザー tentententen
提出日時 2020-11-04 12:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-07-22 09:56:19
合計ジャッジ時間 7,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,320 KB
testcase_01 AC 129 ms
41,308 KB
testcase_02 AC 132 ms
41,116 KB
testcase_03 AC 134 ms
41,244 KB
testcase_04 AC 131 ms
40,976 KB
testcase_05 AC 133 ms
41,024 KB
testcase_06 AC 136 ms
41,060 KB
testcase_07 AC 145 ms
41,156 KB
testcase_08 AC 138 ms
41,148 KB
testcase_09 AC 132 ms
41,236 KB
testcase_10 AC 132 ms
41,164 KB
testcase_11 AC 133 ms
41,120 KB
testcase_12 AC 134 ms
41,212 KB
testcase_13 AC 143 ms
41,032 KB
testcase_14 AC 134 ms
41,336 KB
testcase_15 AC 135 ms
41,068 KB
testcase_16 AC 146 ms
41,244 KB
testcase_17 AC 144 ms
41,096 KB
testcase_18 AC 131 ms
41,288 KB
testcase_19 AC 141 ms
41,200 KB
testcase_20 AC 139 ms
40,996 KB
testcase_21 AC 134 ms
41,024 KB
testcase_22 AC 134 ms
41,024 KB
testcase_23 AC 150 ms
41,160 KB
testcase_24 AC 150 ms
41,024 KB
testcase_25 AC 130 ms
41,364 KB
testcase_26 AC 135 ms
41,192 KB
testcase_27 AC 131 ms
41,280 KB
testcase_28 AC 133 ms
40,876 KB
testcase_29 AC 134 ms
41,084 KB
testcase_30 AC 132 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		int std = (a + b - 1) / b;
		int sp = (a + c - 1) / c;
		if (sp * 3 > std * 2) {
		    System.out.println("NO");
		} else {
		    System.out.println("YES");
		}
	}
}
0