結果

問題 No.285 消費税2
ユーザー uafr_csuafr_cs
提出日時 2015-10-11 23:34:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 452 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 87,508 KB
実行使用メモリ 42,796 KB
最終ジャッジ日時 2024-07-21 07:01:40
合計ジャッジ時間 8,957 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
42,360 KB
testcase_01 AC 169 ms
42,352 KB
testcase_02 AC 173 ms
42,208 KB
testcase_03 AC 172 ms
42,360 KB
testcase_04 AC 169 ms
42,656 KB
testcase_05 AC 170 ms
42,668 KB
testcase_06 AC 164 ms
42,520 KB
testcase_07 AC 168 ms
42,336 KB
testcase_08 AC 172 ms
42,376 KB
testcase_09 AC 174 ms
42,200 KB
testcase_10 AC 172 ms
42,672 KB
testcase_11 AC 170 ms
42,228 KB
testcase_12 AC 171 ms
42,200 KB
testcase_13 AC 178 ms
42,148 KB
testcase_14 AC 175 ms
42,396 KB
testcase_15 AC 170 ms
42,540 KB
testcase_16 AC 174 ms
42,328 KB
testcase_17 AC 170 ms
42,184 KB
testcase_18 AC 168 ms
42,796 KB
testcase_19 AC 170 ms
42,200 KB
testcase_20 AC 173 ms
42,312 KB
testcase_21 AC 169 ms
42,676 KB
testcase_22 AC 170 ms
42,528 KB
testcase_23 AC 168 ms
42,160 KB
testcase_24 AC 173 ms
42,648 KB
testcase_25 AC 175 ms
42,472 KB
testcase_26 AC 168 ms
42,408 KB
testcase_27 AC 171 ms
42,364 KB
testcase_28 AC 173 ms
42,496 KB
testcase_29 AC 165 ms
42,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long D = sc.nextLong();
		final long D8 = D * 8;
		
		final long upper_ans = D + (D8 / 100);
		final long lower_ans = D8 % 100;
		
		System.out.println(upper_ans + "." + String.format("%02d", lower_ans));
	}

}
0