結果

問題 No.285 消費税2
ユーザー poopi_pokepoopi_poke
提出日時 2016-12-01 23:04:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 4,161 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-11-27 16:23:39
合計ジャッジ時間 9,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,376 KB
testcase_01 AC 136 ms
41,476 KB
testcase_02 AC 133 ms
41,260 KB
testcase_03 AC 132 ms
40,660 KB
testcase_04 AC 144 ms
41,356 KB
testcase_05 AC 132 ms
40,960 KB
testcase_06 AC 135 ms
40,672 KB
testcase_07 AC 136 ms
41,460 KB
testcase_08 AC 132 ms
41,376 KB
testcase_09 AC 129 ms
41,276 KB
testcase_10 AC 135 ms
41,608 KB
testcase_11 AC 132 ms
41,456 KB
testcase_12 AC 125 ms
40,788 KB
testcase_13 AC 131 ms
40,844 KB
testcase_14 AC 135 ms
41,488 KB
testcase_15 AC 129 ms
40,704 KB
testcase_16 AC 136 ms
41,380 KB
testcase_17 AC 143 ms
41,624 KB
testcase_18 AC 133 ms
41,292 KB
testcase_19 AC 133 ms
41,300 KB
testcase_20 AC 131 ms
41,316 KB
testcase_21 AC 133 ms
41,676 KB
testcase_22 WA -
testcase_23 AC 134 ms
41,484 KB
testcase_24 AC 132 ms
41,416 KB
testcase_25 AC 134 ms
41,360 KB
testcase_26 AC 137 ms
41,584 KB
testcase_27 AC 135 ms
41,336 KB
testcase_28 AC 135 ms
41,380 KB
testcase_29 AC 136 ms
41,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class A{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		double a=sc.nextDouble();
		System.out.print(a+a*0.08);
	}
}
0