結果

問題 No.285 消費税2
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 22:21:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-11-22 12:37:00
合計ジャッジ時間 8,340 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,392 KB
testcase_01 AC 128 ms
41,508 KB
testcase_02 AC 131 ms
41,520 KB
testcase_03 AC 131 ms
41,236 KB
testcase_04 AC 116 ms
40,104 KB
testcase_05 AC 118 ms
39,948 KB
testcase_06 AC 129 ms
40,860 KB
testcase_07 AC 129 ms
41,200 KB
testcase_08 AC 117 ms
39,836 KB
testcase_09 AC 130 ms
41,212 KB
testcase_10 AC 130 ms
41,432 KB
testcase_11 AC 130 ms
41,316 KB
testcase_12 AC 116 ms
40,084 KB
testcase_13 AC 130 ms
41,356 KB
testcase_14 AC 134 ms
41,096 KB
testcase_15 AC 132 ms
41,236 KB
testcase_16 AC 130 ms
41,076 KB
testcase_17 AC 130 ms
41,216 KB
testcase_18 AC 130 ms
41,092 KB
testcase_19 AC 130 ms
41,356 KB
testcase_20 AC 132 ms
41,240 KB
testcase_21 AC 133 ms
41,072 KB
testcase_22 AC 120 ms
40,292 KB
testcase_23 AC 132 ms
40,992 KB
testcase_24 AC 133 ms
41,088 KB
testcase_25 AC 131 ms
41,128 KB
testcase_26 AC 131 ms
41,440 KB
testcase_27 AC 134 ms
41,276 KB
testcase_28 AC 119 ms
40,084 KB
testcase_29 AC 132 ms
41,028 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.printf(".%02d",m[0]);
		}
		System.out.println();
	}
}
0