結果

問題 No.218 経験値1.5倍
ユーザー 37zigen37zigen
提出日時 2016-03-30 13:51:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 595 bytes
コンパイル時間 2,215 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 41,924 KB
最終ジャッジ日時 2024-10-02 08:08:56
合計ジャッジ時間 7,686 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 145 ms
41,512 KB
testcase_07 AC 141 ms
41,304 KB
testcase_08 AC 142 ms
41,500 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 139 ms
41,488 KB
testcase_14 AC 140 ms
41,360 KB
testcase_15 AC 139 ms
41,436 KB
testcase_16 WA -
testcase_17 AC 141 ms
41,260 KB
testcase_18 AC 145 ms
41,500 KB
testcase_19 WA -
testcase_20 AC 143 ms
41,756 KB
testcase_21 AC 144 ms
41,528 KB
testcase_22 AC 142 ms
41,440 KB
testcase_23 AC 143 ms
41,748 KB
testcase_24 AC 141 ms
41,500 KB
testcase_25 AC 141 ms
41,600 KB
testcase_26 WA -
testcase_27 AC 138 ms
41,364 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 142 ms
41,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder218;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		double a,b,c;
		a=sc.nextDouble();
		b=sc.nextDouble();
		c=sc.nextDouble();
		//通常必要経験値 a/b
		//キャンペーン中 a/c
		//   a/c<=a/b*2/3
		//   1/c<=1/b*2/3
		//   3b<=2c
		
		if(3*a/c<=(a/b)*2){
			if(a/c!=(int)(a/c)){
				if((int)a/c+1>(a/b)*(2/3)){
					System.out.println("NO");
				}else{
					System.out.println("YES");
				}
			}else{
				System.out.println("YES");
			}
		}else{
			System.out.println("NO");
		}
	}
}
0