結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,216 KB
testcase_01 AC 124 ms
53,824 KB
testcase_02 AC 122 ms
54,032 KB
testcase_03 AC 124 ms
54,004 KB
testcase_04 AC 121 ms
53,864 KB
testcase_05 AC 107 ms
52,872 KB
testcase_06 AC 119 ms
52,980 KB
testcase_07 AC 115 ms
52,992 KB
testcase_08 AC 123 ms
53,944 KB
testcase_09 AC 121 ms
54,032 KB
testcase_10 AC 121 ms
53,724 KB
testcase_11 AC 109 ms
52,896 KB
testcase_12 AC 121 ms
54,244 KB
testcase_13 AC 123 ms
53,952 KB
testcase_14 AC 119 ms
53,928 KB
testcase_15 AC 124 ms
53,968 KB
testcase_16 AC 122 ms
53,844 KB
testcase_17 AC 122 ms
53,980 KB
testcase_18 AC 108 ms
52,892 KB
testcase_19 AC 112 ms
52,856 KB
testcase_20 AC 119 ms
53,680 KB
testcase_21 AC 118 ms
53,968 KB
testcase_22 WA -
testcase_23 AC 117 ms
54,108 KB
testcase_24 AC 100 ms
52,512 KB
testcase_25 AC 121 ms
53,756 KB
testcase_26 AC 104 ms
54,488 KB
testcase_27 AC 110 ms
52,680 KB
testcase_28 AC 116 ms
53,796 KB
testcase_29 AC 119 ms
54,092 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