結果
問題 | No.218 経験値1.5倍 |
ユーザー | r.suzuki |
提出日時 | 2015-12-13 16:59:51 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 419 bytes |
コンパイル時間 | 4,715 ms |
コンパイル使用メモリ | 74,072 KB |
実行使用メモリ | 41,928 KB |
最終ジャッジ日時 | 2024-09-15 11:43:43 |
合計ジャッジ時間 | 8,353 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 129 ms
41,064 KB |
testcase_07 | AC | 116 ms
40,028 KB |
testcase_08 | AC | 131 ms
40,996 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 128 ms
41,388 KB |
testcase_14 | AC | 127 ms
41,232 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 125 ms
40,936 KB |
testcase_18 | AC | 127 ms
40,940 KB |
testcase_19 | WA | - |
testcase_20 | AC | 118 ms
39,992 KB |
testcase_21 | AC | 129 ms
40,984 KB |
testcase_22 | AC | 127 ms
41,188 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
public class No_218 { public static void main(String[] args) { java.util.Scanner sc = new java.util.Scanner(System.in); int valueToNextLevel = sc.nextInt(); int reinforcement = sc.nextInt(); int campaign = sc.nextInt(); float kasetsu = (float)(valueToNextLevel / campaign) / (valueToNextLevel / reinforcement); String answer = kasetsu == (float) 2 / 3 ? "YES" : "NO"; System.out.println(answer); } }