結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
41,532 KB
testcase_01 AC 139 ms
41,144 KB
testcase_02 AC 147 ms
41,288 KB
testcase_03 AC 143 ms
41,220 KB
testcase_04 AC 142 ms
41,248 KB
testcase_05 AC 142 ms
41,384 KB
testcase_06 AC 140 ms
41,400 KB
testcase_07 AC 136 ms
40,952 KB
testcase_08 AC 138 ms
41,172 KB
testcase_09 AC 140 ms
40,976 KB
testcase_10 AC 136 ms
41,268 KB
testcase_11 AC 138 ms
41,492 KB
testcase_12 AC 137 ms
41,472 KB
testcase_13 AC 136 ms
41,244 KB
testcase_14 AC 136 ms
41,420 KB
testcase_15 AC 136 ms
41,136 KB
testcase_16 AC 135 ms
41,232 KB
testcase_17 AC 136 ms
41,332 KB
testcase_18 AC 138 ms
41,412 KB
testcase_19 AC 141 ms
41,336 KB
testcase_20 AC 146 ms
41,100 KB
testcase_21 AC 140 ms
41,216 KB
testcase_22 AC 139 ms
41,192 KB
testcase_23 AC 140 ms
41,192 KB
testcase_24 AC 144 ms
41,632 KB
testcase_25 AC 139 ms
41,292 KB
testcase_26 AC 142 ms
41,488 KB
testcase_27 AC 136 ms
41,388 KB
testcase_28 AC 138 ms
40,920 KB
testcase_29 AC 143 ms
41,092 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