結果

問題 No.219 巨大数の概算
ユーザー tentententen
提出日時 2021-03-11 12:26:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 423 ms / 1,500 ms
コード長 1,417 bytes
コンパイル時間 5,915 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 59,304 KB
最終ジャッジ日時 2024-10-13 01:34:01
合計ジャッジ時間 24,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 376 ms
59,084 KB
testcase_01 AC 388 ms
58,916 KB
testcase_02 AC 379 ms
58,944 KB
testcase_03 AC 374 ms
59,112 KB
testcase_04 AC 377 ms
59,156 KB
testcase_05 AC 125 ms
53,932 KB
testcase_06 AC 200 ms
56,864 KB
testcase_07 AC 106 ms
52,684 KB
testcase_08 AC 201 ms
57,176 KB
testcase_09 AC 109 ms
53,028 KB
testcase_10 AC 372 ms
59,004 KB
testcase_11 AC 372 ms
58,828 KB
testcase_12 AC 381 ms
59,064 KB
testcase_13 AC 374 ms
58,728 KB
testcase_14 AC 382 ms
59,088 KB
testcase_15 AC 396 ms
58,940 KB
testcase_16 AC 423 ms
58,976 KB
testcase_17 AC 376 ms
59,116 KB
testcase_18 AC 409 ms
58,768 KB
testcase_19 AC 397 ms
59,072 KB
testcase_20 AC 407 ms
59,060 KB
testcase_21 AC 388 ms
59,048 KB
testcase_22 AC 401 ms
58,816 KB
testcase_23 AC 382 ms
59,036 KB
testcase_24 AC 371 ms
59,084 KB
testcase_25 AC 377 ms
59,088 KB
testcase_26 AC 391 ms
58,968 KB
testcase_27 AC 369 ms
59,096 KB
testcase_28 AC 366 ms
58,972 KB
testcase_29 AC 384 ms
59,100 KB
testcase_30 AC 369 ms
59,204 KB
testcase_31 AC 373 ms
58,900 KB
testcase_32 AC 395 ms
58,852 KB
testcase_33 AC 391 ms
58,904 KB
testcase_34 AC 389 ms
59,304 KB
testcase_35 AC 391 ms
59,076 KB
testcase_36 AC 395 ms
59,016 KB
testcase_37 AC 396 ms
59,108 KB
testcase_38 AC 385 ms
59,040 KB
testcase_39 AC 371 ms
59,036 KB
testcase_40 AC 391 ms
59,100 KB
testcase_41 AC 377 ms
58,864 KB
testcase_42 AC 374 ms
59,020 KB
testcase_43 AC 388 ms
59,020 KB
testcase_44 AC 389 ms
59,096 KB
testcase_45 AC 387 ms
59,128 KB
testcase_46 AC 386 ms
59,016 KB
testcase_47 AC 373 ms
58,816 KB
testcase_48 AC 363 ms
59,104 KB
testcase_49 AC 384 ms
58,988 KB
testcase_50 AC 367 ms
58,840 KB
testcase_51 AC 120 ms
53,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    sb.append(getAns(sc.nextInt(), sc.nextInt())).append("\n");
		}
		System.out.print(sb);
   }
   
   static String getAns(int x, int p) {
       return pow(new Num(x, 0), p).toString();
   }
   
   static Num pow(Num x, int p) {
       if (p == 0) {
           return new Num(1, 0);
       } else if (p % 2 == 0) {
           return pow(x.pow2(), p / 2);
       } else {
           return pow(x, p - 1).multiply(x);
       }
   }
   
   static class Num {
       double value;
       long base;
       
       public Num(double value, long base) {
           while (value >= 10) {
               base++;
               value /= 10;
           }
           this.value = value;
           this.base = base;
       }
       
       public Num pow2() {
           return new Num(value * value, base * 2);
       }
       
       public Num multiply(Num x) {
           return new Num(value * x.value, base + x.base);
       }
       
       public String toString() {
           int ans = (int)(value * 10);
           StringBuilder sb = new StringBuilder();
           sb.append(ans / 10).append(" ").append(ans % 10).append(" ").append(base);
           return sb.toString();
       }
   }
}

0