結果
問題 | No.218 経験値1.5倍 |
ユーザー | dazy |
提出日時 | 2017-02-26 01:05:43 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 3,591 ms |
コンパイル使用メモリ | 77,636 KB |
実行使用メモリ | 41,856 KB |
最終ジャッジ日時 | 2024-06-11 15:32:46 |
合計ジャッジ時間 | 8,353 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 131 ms
41,332 KB |
testcase_08 | AC | 131 ms
41,624 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 131 ms
41,316 KB |
testcase_14 | WA | - |
testcase_15 | AC | 130 ms
41,124 KB |
testcase_16 | WA | - |
testcase_17 | AC | 130 ms
41,484 KB |
testcase_18 | AC | 130 ms
41,856 KB |
testcase_19 | WA | - |
testcase_20 | AC | 113 ms
41,560 KB |
testcase_21 | AC | 118 ms
40,272 KB |
testcase_22 | AC | 118 ms
40,228 KB |
testcase_23 | AC | 116 ms
41,424 KB |
testcase_24 | WA | - |
testcase_25 | AC | 126 ms
41,572 KB |
testcase_26 | WA | - |
testcase_27 | AC | 128 ms
41,156 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 128 ms
41,628 KB |
ソースコード
import java.util.*; public class Run { public static void main (String arg[]) { Scanner scan = new Scanner(System.in); String ans = "YES"; int a = scan.nextInt(); int b = scan.nextInt(); int c = scan.nextInt(); int tmp1 = a / b; int tmp2 = a / c; if (a%b!=0) tmp1++; if (a%c!=0) tmp2++; if ((tmp2*10)/tmp1 < 15) ans = "NO"; System.out.println(ans); } }