結果

問題 No.56 消費税
ユーザー yagi2yagi2
提出日時 2017-04-25 17:31:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 261 bytes
コンパイル時間 2,087 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-09-13 08:53:31
合計ジャッジ時間 6,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
46,368 KB
testcase_01 AC 126 ms
46,328 KB
testcase_02 AC 113 ms
46,336 KB
testcase_03 WA -
testcase_04 AC 121 ms
46,244 KB
testcase_05 AC 122 ms
46,488 KB
testcase_06 AC 108 ms
45,040 KB
testcase_07 AC 121 ms
46,412 KB
testcase_08 AC 121 ms
46,400 KB
testcase_09 AC 119 ms
46,100 KB
testcase_10 AC 121 ms
46,076 KB
testcase_11 AC 119 ms
46,236 KB
testcase_12 AC 121 ms
46,240 KB
testcase_13 AC 120 ms
46,224 KB
testcase_14 AC 124 ms
46,208 KB
testcase_15 AC 110 ms
45,060 KB
testcase_16 AC 109 ms
45,040 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        System.out.println((int)Math.floor(Long.parseLong(sc.next()) * (Integer.parseInt(sc.next()) / 100.0 + 1)));
    }
}
0