結果

問題 No.218 経験値1.5倍
ユーザー Mcpu3Mcpu3
提出日時 2018-06-23 23:53:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 3,986 ms
コンパイル使用メモリ 70,748 KB
実行使用メモリ 56,260 KB
最終ジャッジ日時 2023-09-13 08:37:33
合計ジャッジ時間 7,648 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
56,080 KB
testcase_01 AC 121 ms
55,600 KB
testcase_02 AC 120 ms
55,768 KB
testcase_03 AC 121 ms
56,260 KB
testcase_04 AC 120 ms
55,764 KB
testcase_05 AC 121 ms
56,236 KB
testcase_06 AC 119 ms
55,944 KB
testcase_07 AC 120 ms
55,604 KB
testcase_08 AC 120 ms
55,776 KB
testcase_09 AC 120 ms
55,444 KB
testcase_10 AC 123 ms
56,092 KB
testcase_11 AC 119 ms
55,616 KB
testcase_12 AC 117 ms
55,852 KB
testcase_13 AC 119 ms
55,448 KB
testcase_14 AC 118 ms
56,016 KB
testcase_15 AC 118 ms
56,164 KB
testcase_16 AC 118 ms
55,948 KB
testcase_17 AC 120 ms
53,712 KB
testcase_18 AC 117 ms
56,128 KB
testcase_19 AC 118 ms
55,448 KB
testcase_20 AC 118 ms
55,948 KB
testcase_21 AC 118 ms
56,000 KB
testcase_22 AC 119 ms
55,692 KB
testcase_23 AC 118 ms
55,792 KB
testcase_24 AC 119 ms
55,708 KB
testcase_25 AC 117 ms
55,448 KB
testcase_26 AC 118 ms
55,596 KB
testcase_27 AC 119 ms
55,892 KB
testcase_28 AC 118 ms
55,972 KB
testcase_29 AC 119 ms
55,764 KB
testcase_30 AC 119 ms
55,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no218{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int a=stdIn.nextInt(),b=stdIn.nextInt(),c=stdIn.nextInt();
		System.out.print((double)((a+b-1)/b)/((a+c-1)/c)>=1.5?"YES":"NO");
	}
}
0