結果

問題 No.219 巨大数の概算
ユーザー GrenacheGrenache
提出日時 2015-05-29 22:59:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 586 ms / 1,500 ms
コード長 807 bytes
コンパイル時間 3,814 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 59,400 KB
最終ジャッジ日時 2024-07-18 10:45:23
合計ジャッジ時間 33,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 561 ms
59,400 KB
testcase_01 AC 572 ms
57,772 KB
testcase_02 AC 552 ms
59,196 KB
testcase_03 AC 557 ms
52,892 KB
testcase_04 AC 545 ms
49,144 KB
testcase_05 AC 169 ms
42,848 KB
testcase_06 AC 327 ms
45,240 KB
testcase_07 AC 169 ms
42,448 KB
testcase_08 AC 329 ms
44,988 KB
testcase_09 AC 170 ms
42,548 KB
testcase_10 AC 567 ms
52,244 KB
testcase_11 AC 559 ms
52,316 KB
testcase_12 AC 569 ms
50,840 KB
testcase_13 AC 557 ms
48,944 KB
testcase_14 AC 546 ms
54,660 KB
testcase_15 AC 566 ms
49,492 KB
testcase_16 AC 567 ms
52,484 KB
testcase_17 AC 554 ms
52,268 KB
testcase_18 AC 549 ms
48,864 KB
testcase_19 AC 546 ms
52,264 KB
testcase_20 AC 557 ms
52,344 KB
testcase_21 AC 571 ms
50,028 KB
testcase_22 AC 570 ms
50,468 KB
testcase_23 AC 570 ms
51,104 KB
testcase_24 AC 568 ms
51,140 KB
testcase_25 AC 566 ms
50,360 KB
testcase_26 AC 565 ms
51,532 KB
testcase_27 AC 547 ms
52,436 KB
testcase_28 AC 567 ms
54,784 KB
testcase_29 AC 539 ms
54,872 KB
testcase_30 AC 555 ms
50,852 KB
testcase_31 AC 534 ms
54,860 KB
testcase_32 AC 566 ms
49,896 KB
testcase_33 AC 556 ms
48,588 KB
testcase_34 AC 562 ms
51,116 KB
testcase_35 AC 554 ms
49,004 KB
testcase_36 AC 557 ms
50,220 KB
testcase_37 AC 550 ms
50,996 KB
testcase_38 AC 573 ms
54,400 KB
testcase_39 AC 562 ms
51,840 KB
testcase_40 AC 559 ms
52,340 KB
testcase_41 AC 586 ms
50,084 KB
testcase_42 AC 546 ms
54,320 KB
testcase_43 AC 573 ms
49,340 KB
testcase_44 AC 566 ms
51,900 KB
testcase_45 AC 549 ms
54,592 KB
testcase_46 AC 567 ms
51,076 KB
testcase_47 AC 572 ms
52,372 KB
testcase_48 AC 576 ms
53,196 KB
testcase_49 AC 562 ms
48,428 KB
testcase_50 AC 564 ms
51,572 KB
testcase_51 AC 157 ms
42,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder219 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();

		for (int i = 0; i < n; i++) {
			long a = sc.nextLong();
			long b = sc.nextLong();

			long loop = b;
			double x = a;
			long xlg = 0;
			while (x >= 10) {
				x /= 10;
				xlg++;
			}
			double xy = 1.0;
			long xylg = 0;
			while (loop > 0) {
				if (loop % 2 == 1) {
					xy = xy * x;
					xylg += xlg;

				}
				x = x * x;
				xlg += xlg;
				while (x >= 10) {
					x /= 10;
					xlg++;
				}
				loop /= 2;
			}

			while (xy >= 100) {
				xy /= 10;
				xylg++;
			}
			while (xy < 10) {
				xy *= 10;
				xylg--;
			}
			
			System.out.println((int)(xy / 10) + " " + (int)xy % 10 + " " + (xylg + 1));
		}
		
		sc.close();
	}
}
0