結果

問題 No.285 消費税2
ユーザー poopi_pokepoopi_poke
提出日時 2016-12-01 23:04:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-05-05 17:01:34
合計ジャッジ時間 7,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,696 KB
testcase_01 AC 117 ms
41,628 KB
testcase_02 AC 120 ms
41,468 KB
testcase_03 AC 121 ms
41,588 KB
testcase_04 AC 106 ms
40,808 KB
testcase_05 AC 117 ms
41,044 KB
testcase_06 AC 105 ms
40,672 KB
testcase_07 AC 118 ms
40,856 KB
testcase_08 AC 106 ms
40,792 KB
testcase_09 AC 117 ms
41,480 KB
testcase_10 AC 110 ms
41,088 KB
testcase_11 AC 117 ms
41,440 KB
testcase_12 AC 113 ms
41,052 KB
testcase_13 AC 118 ms
41,016 KB
testcase_14 AC 117 ms
41,572 KB
testcase_15 AC 111 ms
40,880 KB
testcase_16 AC 118 ms
41,524 KB
testcase_17 AC 116 ms
41,180 KB
testcase_18 AC 120 ms
41,312 KB
testcase_19 AC 120 ms
41,356 KB
testcase_20 AC 105 ms
40,808 KB
testcase_21 AC 107 ms
40,860 KB
testcase_22 WA -
testcase_23 AC 116 ms
40,820 KB
testcase_24 AC 122 ms
41,180 KB
testcase_25 AC 110 ms
40,812 KB
testcase_26 AC 116 ms
40,896 KB
testcase_27 AC 122 ms
41,652 KB
testcase_28 AC 107 ms
40,640 KB
testcase_29 AC 105 ms
40,468 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