結果

問題 No.285 消費税2
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-12-19 20:26:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 3,323 ms
コンパイル使用メモリ 77,808 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-09-17 10:46:38
合計ジャッジ時間 7,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,464 KB
testcase_01 AC 129 ms
41,244 KB
testcase_02 AC 130 ms
41,156 KB
testcase_03 AC 134 ms
41,412 KB
testcase_04 AC 117 ms
40,016 KB
testcase_05 AC 129 ms
41,128 KB
testcase_06 AC 123 ms
41,048 KB
testcase_07 AC 119 ms
41,380 KB
testcase_08 AC 120 ms
41,288 KB
testcase_09 AC 125 ms
41,344 KB
testcase_10 AC 115 ms
40,000 KB
testcase_11 AC 126 ms
41,052 KB
testcase_12 AC 129 ms
41,384 KB
testcase_13 AC 129 ms
41,200 KB
testcase_14 AC 131 ms
41,028 KB
testcase_15 AC 130 ms
41,096 KB
testcase_16 AC 115 ms
39,952 KB
testcase_17 AC 116 ms
40,096 KB
testcase_18 AC 125 ms
41,296 KB
testcase_19 AC 123 ms
41,612 KB
testcase_20 AC 125 ms
41,524 KB
testcase_21 AC 127 ms
41,172 KB
testcase_22 WA -
testcase_23 AC 109 ms
41,084 KB
testcase_24 AC 119 ms
41,168 KB
testcase_25 AC 118 ms
41,044 KB
testcase_26 AC 107 ms
41,360 KB
testcase_27 AC 119 ms
41,456 KB
testcase_28 AC 130 ms
41,060 KB
testcase_29 AC 129 ms
41,208 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 zei = 0.08;
	double n = D + ((double)D * zei);
	System.out.println(n);
}
}
0