結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,180 KB
testcase_01 AC 117 ms
41,256 KB
testcase_02 AC 116 ms
41,188 KB
testcase_03 AC 119 ms
41,324 KB
testcase_04 AC 103 ms
40,176 KB
testcase_05 AC 126 ms
41,540 KB
testcase_06 AC 116 ms
41,008 KB
testcase_07 AC 117 ms
41,200 KB
testcase_08 AC 115 ms
41,048 KB
testcase_09 AC 106 ms
40,292 KB
testcase_10 AC 121 ms
41,436 KB
testcase_11 AC 117 ms
40,980 KB
testcase_12 AC 118 ms
41,272 KB
testcase_13 AC 115 ms
41,416 KB
testcase_14 AC 114 ms
41,172 KB
testcase_15 AC 113 ms
41,300 KB
testcase_16 AC 103 ms
40,552 KB
testcase_17 AC 116 ms
41,180 KB
testcase_18 AC 108 ms
40,260 KB
testcase_19 AC 110 ms
40,276 KB
testcase_20 AC 118 ms
41,256 KB
testcase_21 AC 130 ms
41,396 KB
testcase_22 WA -
testcase_23 AC 120 ms
41,440 KB
testcase_24 AC 119 ms
41,224 KB
testcase_25 AC 122 ms
41,556 KB
testcase_26 AC 113 ms
40,176 KB
testcase_27 AC 114 ms
41,228 KB
testcase_28 AC 114 ms
41,360 KB
testcase_29 AC 116 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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