結果

問題 No.285 消費税2
ユーザー spaciaspacia
提出日時 2016-01-04 09:41:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 50,968 KB
最終ジャッジ日時 2024-09-19 11:08:06
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,816 KB
testcase_01 AC 50 ms
50,580 KB
testcase_02 AC 49 ms
50,404 KB
testcase_03 AC 50 ms
50,396 KB
testcase_04 AC 50 ms
50,832 KB
testcase_05 AC 50 ms
50,388 KB
testcase_06 AC 50 ms
50,404 KB
testcase_07 AC 51 ms
50,772 KB
testcase_08 AC 51 ms
50,968 KB
testcase_09 AC 51 ms
50,764 KB
testcase_10 AC 51 ms
50,864 KB
testcase_11 AC 50 ms
50,884 KB
testcase_12 AC 51 ms
50,752 KB
testcase_13 AC 52 ms
50,804 KB
testcase_14 AC 50 ms
50,860 KB
testcase_15 AC 50 ms
50,684 KB
testcase_16 AC 52 ms
50,816 KB
testcase_17 AC 51 ms
50,764 KB
testcase_18 AC 49 ms
50,528 KB
testcase_19 AC 50 ms
50,528 KB
testcase_20 AC 49 ms
50,852 KB
testcase_21 AC 52 ms
50,432 KB
testcase_22 AC 50 ms
50,376 KB
testcase_23 AC 49 ms
50,760 KB
testcase_24 AC 49 ms
50,804 KB
testcase_25 AC 50 ms
50,736 KB
testcase_26 AC 51 ms
50,536 KB
testcase_27 AC 50 ms
50,840 KB
testcase_28 AC 50 ms
50,588 KB
testcase_29 AC 48 ms
50,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		BigDecimal n = new BigDecimal(br.readLine());
		
		out(n.multiply(BigDecimal.valueOf(1.08)));
		
	}
}
0