結果

問題 No.56 消費税
ユーザー DevbotBotDevbotBot
提出日時 2015-06-24 17:17:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 3,487 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-18 02:51:25
合計ジャッジ時間 8,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
54,184 KB
testcase_01 AC 151 ms
54,248 KB
testcase_02 AC 151 ms
54,168 KB
testcase_03 AC 150 ms
54,232 KB
testcase_04 AC 148 ms
54,136 KB
testcase_05 AC 145 ms
54,260 KB
testcase_06 AC 144 ms
54,244 KB
testcase_07 AC 145 ms
54,240 KB
testcase_08 AC 146 ms
54,112 KB
testcase_09 AC 144 ms
54,224 KB
testcase_10 AC 148 ms
53,968 KB
testcase_11 AC 147 ms
54,364 KB
testcase_12 AC 142 ms
54,252 KB
testcase_13 AC 143 ms
54,324 KB
testcase_14 AC 144 ms
54,300 KB
testcase_15 AC 149 ms
54,144 KB
testcase_16 AC 142 ms
54,336 KB
testcase_17 AC 144 ms
54,284 KB
testcase_18 AC 144 ms
54,188 KB
testcase_19 AC 149 ms
54,280 KB
testcase_20 AC 147 ms
54,356 KB
testcase_21 AC 146 ms
54,204 KB
testcase_22 AC 144 ms
54,264 KB
testcase_23 AC 146 ms
54,284 KB
testcase_24 AC 143 ms
54,244 KB
testcase_25 AC 143 ms
54,108 KB
testcase_26 AC 148 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class No56 {
    public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		Double D = sc.nextDouble(), P = sc.nextDouble();
		System.out.println((int)(D * (100 + P) / 100));
		}
}
0