結果

問題 No.218 経験値1.5倍
ユーザー shinwisteriashinwisteria
提出日時 2018-03-15 19:42:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 3,666 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-06-01 04:47:19
合計ジャッジ時間 9,586 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
54,344 KB
testcase_01 AC 142 ms
53,948 KB
testcase_02 AC 140 ms
54,076 KB
testcase_03 AC 141 ms
53,984 KB
testcase_04 AC 141 ms
54,096 KB
testcase_05 AC 144 ms
54,084 KB
testcase_06 AC 142 ms
53,960 KB
testcase_07 AC 140 ms
53,996 KB
testcase_08 AC 143 ms
54,216 KB
testcase_09 AC 142 ms
53,836 KB
testcase_10 AC 141 ms
54,196 KB
testcase_11 AC 146 ms
54,440 KB
testcase_12 AC 138 ms
54,236 KB
testcase_13 AC 142 ms
53,852 KB
testcase_14 AC 141 ms
54,240 KB
testcase_15 AC 138 ms
54,176 KB
testcase_16 AC 140 ms
54,052 KB
testcase_17 AC 137 ms
54,144 KB
testcase_18 AC 142 ms
54,216 KB
testcase_19 AC 143 ms
53,996 KB
testcase_20 AC 142 ms
54,108 KB
testcase_21 AC 143 ms
53,928 KB
testcase_22 AC 140 ms
53,736 KB
testcase_23 AC 138 ms
53,968 KB
testcase_24 AC 141 ms
54,220 KB
testcase_25 AC 140 ms
54,088 KB
testcase_26 AC 138 ms
54,232 KB
testcase_27 AC 141 ms
54,244 KB
testcase_28 AC 139 ms
54,012 KB
testcase_29 AC 141 ms
54,392 KB
testcase_30 AC 143 ms
54,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con218 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt() , b = s.nextInt() , c = s.nextInt();
		s.close();

		int n = a / b , m = a / c;
		if(n * b < a){
			n++;
		}
		if(m * c < a){
			m++;
		}

		if(3 * m <= 2 * n){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}

	}

}
0