結果

問題 No.285 消費税2
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 22:20:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 4,263 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 54,636 KB
最終ジャッジ日時 2024-11-22 12:36:27
合計ジャッジ時間 9,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,208 KB
testcase_01 AC 134 ms
53,712 KB
testcase_02 AC 147 ms
54,132 KB
testcase_03 AC 148 ms
54,072 KB
testcase_04 AC 134 ms
54,092 KB
testcase_05 AC 148 ms
54,636 KB
testcase_06 AC 146 ms
54,180 KB
testcase_07 AC 145 ms
54,000 KB
testcase_08 AC 147 ms
54,072 KB
testcase_09 AC 147 ms
54,236 KB
testcase_10 AC 147 ms
53,924 KB
testcase_11 AC 145 ms
54,296 KB
testcase_12 AC 145 ms
54,136 KB
testcase_13 AC 148 ms
54,540 KB
testcase_14 AC 147 ms
54,192 KB
testcase_15 AC 148 ms
54,368 KB
testcase_16 AC 148 ms
53,884 KB
testcase_17 AC 149 ms
54,384 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 150 ms
54,340 KB
testcase_21 AC 147 ms
53,888 KB
testcase_22 AC 150 ms
54,328 KB
testcase_23 AC 151 ms
54,380 KB
testcase_24 WA -
testcase_25 AC 133 ms
53,932 KB
testcase_26 AC 147 ms
54,208 KB
testcase_27 AC 153 ms
53,780 KB
testcase_28 WA -
testcase_29 AC 148 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		long[] m = new long[10];
		long n = sc.nextLong();
		for(int i = 1; i < 10; i++){
			m[i] = n % 100;
			n /= 100;
		}
		for(int i = 1; i < 10; i++){
			m[i-1] += m[i]*8;
			m[i] += m[i-1]/100;
			m[i-1] %= 100;
		}
		long a = 0;
		for(int i = 9; i > 0; i--){
			a *= 100;
			a += m[i];
		}
		System.out.print(a);
		if(m[0] > 0){
			System.out.println("." + m[0]);
		} else {
			System.out.println();
		}
	}
}
0