結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,264 KB
testcase_01 AC 129 ms
54,008 KB
testcase_02 AC 134 ms
54,336 KB
testcase_03 AC 116 ms
53,052 KB
testcase_04 AC 133 ms
54,400 KB
testcase_05 AC 128 ms
53,812 KB
testcase_06 AC 118 ms
53,108 KB
testcase_07 AC 131 ms
54,240 KB
testcase_08 AC 132 ms
54,284 KB
testcase_09 AC 133 ms
54,312 KB
testcase_10 AC 135 ms
53,916 KB
testcase_11 AC 134 ms
54,216 KB
testcase_12 AC 131 ms
54,140 KB
testcase_13 AC 132 ms
54,012 KB
testcase_14 AC 136 ms
54,060 KB
testcase_15 AC 131 ms
54,288 KB
testcase_16 AC 130 ms
53,916 KB
testcase_17 AC 131 ms
54,444 KB
testcase_18 AC 132 ms
54,004 KB
testcase_19 AC 131 ms
54,160 KB
testcase_20 AC 135 ms
54,232 KB
testcase_21 AC 133 ms
54,028 KB
testcase_22 AC 133 ms
54,240 KB
testcase_23 AC 134 ms
54,360 KB
testcase_24 AC 134 ms
54,076 KB
testcase_25 AC 134 ms
54,036 KB
testcase_26 AC 134 ms
53,984 KB
testcase_27 AC 134 ms
54,012 KB
testcase_28 AC 134 ms
54,340 KB
testcase_29 AC 133 ms
53,940 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 BDD = new BigDecimal(D);
	BigDecimal zei = new BigDecimal("1.08");
	BigDecimal Val = BDD.multiply(zei);
	System.out.println(Val);
}
}
0