結果

問題 No.285 消費税2
ユーザー fal_rndfal_rnd
提出日時 2017-08-25 23:37:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 88,292 KB
実行使用メモリ 42,384 KB
最終ジャッジ日時 2024-10-15 16:14:17
合計ジャッジ時間 7,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,648 KB
testcase_01 AC 144 ms
42,052 KB
testcase_02 AC 148 ms
41,928 KB
testcase_03 AC 143 ms
42,008 KB
testcase_04 AC 141 ms
41,100 KB
testcase_05 AC 128 ms
41,036 KB
testcase_06 AC 141 ms
41,764 KB
testcase_07 AC 144 ms
42,004 KB
testcase_08 AC 144 ms
42,076 KB
testcase_09 AC 144 ms
41,788 KB
testcase_10 AC 144 ms
41,880 KB
testcase_11 AC 142 ms
41,636 KB
testcase_12 AC 144 ms
41,884 KB
testcase_13 AC 145 ms
41,752 KB
testcase_14 AC 145 ms
41,752 KB
testcase_15 AC 146 ms
41,996 KB
testcase_16 AC 143 ms
41,740 KB
testcase_17 AC 158 ms
42,056 KB
testcase_18 AC 149 ms
41,740 KB
testcase_19 AC 147 ms
42,044 KB
testcase_20 AC 144 ms
41,612 KB
testcase_21 AC 154 ms
42,384 KB
testcase_22 AC 148 ms
41,684 KB
testcase_23 AC 143 ms
41,900 KB
testcase_24 AC 145 ms
41,780 KB
testcase_25 AC 128 ms
41,068 KB
testcase_26 AC 147 ms
41,788 KB
testcase_27 AC 144 ms
41,848 KB
testcase_28 AC 141 ms
41,640 KB
testcase_29 AC 144 ms
41,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		System.out.printf("%20f",BigDecimal.valueOf(1.08).multiply(s.nextBigDecimal()));
	}
}
0