結果

問題 No.218 経験値1.5倍
ユーザー HEGO55HEGO55
提出日時 2017-05-17 15:01:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-06-09 09:43:33
合計ジャッジ時間 6,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,024 KB
testcase_01 AC 128 ms
41,312 KB
testcase_02 AC 125 ms
41,432 KB
testcase_03 AC 122 ms
41,252 KB
testcase_04 AC 122 ms
41,288 KB
testcase_05 AC 128 ms
41,236 KB
testcase_06 AC 125 ms
41,368 KB
testcase_07 AC 130 ms
41,320 KB
testcase_08 AC 134 ms
41,332 KB
testcase_09 AC 132 ms
41,416 KB
testcase_10 AC 119 ms
41,204 KB
testcase_11 AC 130 ms
41,288 KB
testcase_12 AC 129 ms
41,248 KB
testcase_13 AC 117 ms
40,360 KB
testcase_14 AC 128 ms
41,160 KB
testcase_15 AC 130 ms
41,600 KB
testcase_16 AC 121 ms
40,360 KB
testcase_17 AC 123 ms
40,544 KB
testcase_18 AC 123 ms
41,312 KB
testcase_19 AC 134 ms
41,176 KB
testcase_20 AC 118 ms
41,716 KB
testcase_21 AC 111 ms
41,588 KB
testcase_22 AC 130 ms
41,428 KB
testcase_23 AC 120 ms
40,212 KB
testcase_24 AC 125 ms
41,280 KB
testcase_25 AC 128 ms
41,172 KB
testcase_26 AC 129 ms
41,368 KB
testcase_27 AC 120 ms
41,176 KB
testcase_28 AC 132 ms
41,312 KB
testcase_29 AC 117 ms
40,024 KB
testcase_30 AC 134 ms
41,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Test36{
	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 count1 = 0;
		int count2 = 0;
		int d = a;
		while(a>0){
			a -= b;
			count1++;
		}
		
		while(d>0){
			d -= c;
			count2++;	
		}
		
		if((count2)*3<=(count1)*2){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0