結果

問題 No.218 経験値1.5倍
ユーザー shinwisteriashinwisteria
提出日時 2018-03-15 19:42:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 4,897 ms
コンパイル使用メモリ 78,392 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-12-21 07:35:25
合計ジャッジ時間 10,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
53,900 KB
testcase_01 AC 160 ms
54,076 KB
testcase_02 AC 161 ms
54,132 KB
testcase_03 AC 165 ms
54,012 KB
testcase_04 AC 157 ms
53,788 KB
testcase_05 AC 154 ms
53,920 KB
testcase_06 AC 157 ms
53,676 KB
testcase_07 AC 157 ms
53,972 KB
testcase_08 AC 166 ms
54,100 KB
testcase_09 AC 161 ms
53,836 KB
testcase_10 AC 165 ms
54,248 KB
testcase_11 AC 160 ms
54,056 KB
testcase_12 AC 161 ms
53,848 KB
testcase_13 AC 165 ms
53,936 KB
testcase_14 AC 159 ms
53,732 KB
testcase_15 AC 166 ms
53,984 KB
testcase_16 AC 158 ms
54,136 KB
testcase_17 AC 157 ms
53,768 KB
testcase_18 AC 151 ms
53,964 KB
testcase_19 AC 160 ms
53,992 KB
testcase_20 AC 153 ms
53,752 KB
testcase_21 AC 151 ms
54,084 KB
testcase_22 AC 154 ms
53,964 KB
testcase_23 AC 161 ms
53,800 KB
testcase_24 AC 154 ms
53,828 KB
testcase_25 AC 161 ms
53,976 KB
testcase_26 AC 155 ms
54,120 KB
testcase_27 AC 159 ms
53,928 KB
testcase_28 AC 159 ms
53,776 KB
testcase_29 AC 160 ms
54,060 KB
testcase_30 AC 163 ms
53,940 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