結果
問題 | No.56 消費税 |
ユーザー | oyafuso |
提出日時 | 2019-03-11 17:13:30 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 731 bytes |
コンパイル時間 | 2,395 ms |
コンパイル使用メモリ | 75,516 KB |
実行使用メモリ | 41,604 KB |
最終ジャッジ日時 | 2024-06-23 15:38:16 |
合計ジャッジ時間 | 6,264 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
41,224 KB |
testcase_01 | AC | 99 ms
39,872 KB |
testcase_02 | AC | 109 ms
41,392 KB |
testcase_03 | WA | - |
testcase_04 | AC | 97 ms
39,860 KB |
testcase_05 | AC | 110 ms
41,208 KB |
testcase_06 | AC | 102 ms
40,116 KB |
testcase_07 | AC | 98 ms
40,056 KB |
testcase_08 | AC | 99 ms
40,212 KB |
testcase_09 | AC | 114 ms
41,148 KB |
testcase_10 | AC | 113 ms
40,816 KB |
testcase_11 | AC | 113 ms
41,588 KB |
testcase_12 | AC | 100 ms
40,204 KB |
testcase_13 | AC | 96 ms
40,240 KB |
testcase_14 | AC | 108 ms
41,232 KB |
testcase_15 | AC | 114 ms
41,112 KB |
testcase_16 | AC | 120 ms
41,432 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
import java.util.*; class Main { private static final String SPLIT_STR = " "; public static void main(String[] args) { // Scanner生成 Scanner sc = new Scanner(System.in); // 入力設定 String input = sc.nextLine(); String[] split = input.split(SPLIT_STR); List<Integer> numList = new ArrayList<>(split.length); for (int i = 0; i < split.length; i++) { numList.add(Integer.parseInt(split[i])); } // Scannerクローズ sc.close(); /* メイン処理開始 */ // 変数初期化 int result = 0; int D = numList.get(0); int P = numList.get(1); // 結果設定 result = (int)(D * (1 + (double)P / 100)); /* メイン処理終了 */ // 結果出力 System.out.println(result); } }