結果

問題 No.285 消費税2
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-11-30 15:11:48
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 219 bytes
コンパイル時間 3,210 ms
コンパイル使用メモリ 73,876 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-09-14 05:23:19
合計ジャッジ時間 8,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,496 KB
testcase_01 AC 129 ms
41,292 KB
testcase_02 AC 128 ms
40,948 KB
testcase_03 AC 129 ms
41,208 KB
testcase_04 AC 127 ms
40,912 KB
testcase_05 AC 129 ms
41,332 KB
testcase_06 AC 128 ms
41,272 KB
testcase_07 AC 130 ms
41,044 KB
testcase_08 AC 128 ms
40,892 KB
testcase_09 AC 127 ms
41,416 KB
testcase_10 AC 126 ms
41,388 KB
testcase_11 AC 128 ms
41,108 KB
testcase_12 AC 131 ms
41,384 KB
testcase_13 AC 130 ms
40,776 KB
testcase_14 AC 129 ms
41,400 KB
testcase_15 AC 130 ms
41,424 KB
testcase_16 AC 129 ms
40,872 KB
testcase_17 AC 130 ms
41,104 KB
testcase_18 AC 116 ms
40,136 KB
testcase_19 AC 129 ms
41,156 KB
testcase_20 AC 130 ms
41,256 KB
testcase_21 AC 131 ms
40,812 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 130 ms
41,048 KB
testcase_25 AC 133 ms
41,240 KB
testcase_26 AC 131 ms
41,284 KB
testcase_27 AC 132 ms
41,380 KB
testcase_28 AC 131 ms
41,088 KB
testcase_29 AC 132 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No_285 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	long D = sc.nextLong();
	double n = D + ((double)D / 100 * 8);
	System.out.println(n);
}
}
0