結果

問題 No.219 巨大数の概算
ユーザー spaciaspacia
提出日時 2016-06-08 14:36:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 648 ms / 1,500 ms
コード長 640 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 77,300 KB
実行使用メモリ 49,456 KB
最終ジャッジ日時 2024-07-18 12:14:00
合計ジャッジ時間 35,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 633 ms
49,344 KB
testcase_01 AC 630 ms
49,140 KB
testcase_02 AC 631 ms
49,384 KB
testcase_03 AC 603 ms
48,340 KB
testcase_04 AC 570 ms
49,140 KB
testcase_05 AC 180 ms
42,960 KB
testcase_06 AC 379 ms
46,812 KB
testcase_07 AC 173 ms
42,904 KB
testcase_08 AC 384 ms
47,012 KB
testcase_09 AC 173 ms
43,088 KB
testcase_10 AC 641 ms
48,684 KB
testcase_11 AC 609 ms
49,072 KB
testcase_12 AC 648 ms
49,032 KB
testcase_13 AC 635 ms
49,424 KB
testcase_14 AC 631 ms
49,000 KB
testcase_15 AC 605 ms
48,336 KB
testcase_16 AC 647 ms
48,744 KB
testcase_17 AC 623 ms
48,952 KB
testcase_18 AC 641 ms
49,300 KB
testcase_19 AC 612 ms
49,132 KB
testcase_20 AC 592 ms
47,896 KB
testcase_21 AC 622 ms
49,076 KB
testcase_22 AC 630 ms
49,252 KB
testcase_23 AC 630 ms
48,936 KB
testcase_24 AC 640 ms
48,800 KB
testcase_25 AC 620 ms
48,928 KB
testcase_26 AC 606 ms
48,224 KB
testcase_27 AC 611 ms
49,048 KB
testcase_28 AC 629 ms
48,636 KB
testcase_29 AC 601 ms
48,980 KB
testcase_30 AC 616 ms
49,008 KB
testcase_31 AC 627 ms
49,304 KB
testcase_32 AC 633 ms
49,396 KB
testcase_33 AC 642 ms
49,268 KB
testcase_34 AC 641 ms
49,080 KB
testcase_35 AC 600 ms
48,012 KB
testcase_36 AC 643 ms
49,208 KB
testcase_37 AC 631 ms
49,312 KB
testcase_38 AC 625 ms
49,008 KB
testcase_39 AC 636 ms
49,184 KB
testcase_40 AC 636 ms
49,304 KB
testcase_41 AC 635 ms
49,456 KB
testcase_42 AC 646 ms
49,204 KB
testcase_43 AC 642 ms
49,284 KB
testcase_44 AC 625 ms
49,092 KB
testcase_45 AC 635 ms
49,164 KB
testcase_46 AC 615 ms
49,320 KB
testcase_47 AC 625 ms
48,348 KB
testcase_48 AC 596 ms
48,288 KB
testcase_49 AC 617 ms
49,284 KB
testcase_50 AC 612 ms
48,616 KB
testcase_51 AC 170 ms
42,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.Scanner;

public class Main {

	public static void main (String[] args) {

		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		for (int i = 0; i < n; i++) {
			int a = sc.nextInt();
			int b = sc.nextInt();
			solve(a, b);
		}

		sc.close();

	}

	public static void solve (int a, int b) {
		double d = Math.log10(a) * b;
		long n = (long)d;
		double m = d - n;
		BigDecimal d2 = BigDecimal.valueOf(Math.pow(10, m)).setScale(1, RoundingMode.DOWN);
		String[] out = (d2 + "").split("\\.");
		System.out.println(out[0] + " " + out[1] + " " + n);
	}

}
0