結果

問題 No.285 消費税2
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-12-19 21:12:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 3,990 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-09-17 10:52:14
合計ジャッジ時間 9,158 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,184 KB
testcase_01 AC 132 ms
54,056 KB
testcase_02 AC 130 ms
54,096 KB
testcase_03 AC 131 ms
54,244 KB
testcase_04 AC 134 ms
54,228 KB
testcase_05 AC 134 ms
54,352 KB
testcase_06 AC 131 ms
53,984 KB
testcase_07 AC 131 ms
53,968 KB
testcase_08 AC 132 ms
54,096 KB
testcase_09 AC 119 ms
52,652 KB
testcase_10 AC 133 ms
54,112 KB
testcase_11 AC 136 ms
54,132 KB
testcase_12 AC 133 ms
54,040 KB
testcase_13 AC 135 ms
54,284 KB
testcase_14 AC 134 ms
54,028 KB
testcase_15 AC 133 ms
53,960 KB
testcase_16 AC 132 ms
54,308 KB
testcase_17 AC 135 ms
53,924 KB
testcase_18 AC 133 ms
54,384 KB
testcase_19 AC 133 ms
54,268 KB
testcase_20 AC 134 ms
54,492 KB
testcase_21 AC 132 ms
54,308 KB
testcase_22 AC 132 ms
54,016 KB
testcase_23 AC 135 ms
53,880 KB
testcase_24 AC 135 ms
54,032 KB
testcase_25 AC 131 ms
53,988 KB
testcase_26 AC 133 ms
54,080 KB
testcase_27 AC 134 ms
53,888 KB
testcase_28 AC 132 ms
54,156 KB
testcase_29 AC 133 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.util.Scanner;

public class No_285 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	long D = sc.nextLong();
	sc.close();
	BigDecimal BD = new BigDecimal(D);
	BigDecimal ritsu = new BigDecimal("0.08");
	BigDecimal ritsu2 = BD.multiply(ritsu);
	BigDecimal Val = BD.add(ritsu2);
	System.out.println(Val);
}
}
0