結果

問題 No.56 消費税
ユーザー HARUKA ASAHIHARUKA ASAHI
提出日時 2021-04-21 15:44:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-07-04 06:00:53
合計ジャッジ時間 5,999 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,296 KB
testcase_01 AC 124 ms
41,668 KB
testcase_02 AC 121 ms
41,572 KB
testcase_03 AC 130 ms
41,276 KB
testcase_04 AC 106 ms
40,064 KB
testcase_05 AC 108 ms
40,236 KB
testcase_06 AC 108 ms
40,148 KB
testcase_07 AC 124 ms
41,476 KB
testcase_08 AC 118 ms
41,516 KB
testcase_09 AC 123 ms
41,560 KB
testcase_10 AC 122 ms
40,992 KB
testcase_11 AC 107 ms
40,192 KB
testcase_12 AC 121 ms
41,572 KB
testcase_13 AC 122 ms
40,980 KB
testcase_14 AC 110 ms
40,324 KB
testcase_15 AC 122 ms
41,460 KB
testcase_16 AC 111 ms
40,200 KB
testcase_17 AC 121 ms
41,268 KB
testcase_18 AC 122 ms
41,348 KB
testcase_19 AC 119 ms
41,600 KB
testcase_20 AC 117 ms
41,340 KB
testcase_21 AC 123 ms
41,228 KB
testcase_22 AC 122 ms
41,320 KB
testcase_23 AC 122 ms
41,272 KB
testcase_24 AC 109 ms
40,248 KB
testcase_25 AC 129 ms
41,220 KB
testcase_26 AC 120 ms
41,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
	Scanner scan = new Scanner(System.in);
	int D = scan.nextInt();
	int p = scan.nextInt();
	int price;

	price = D + D * p/100;
	System.out.println(price);	

    }
}
0