結果

問題 No.219 巨大数の概算
ユーザー tentententen
提出日時 2023-04-21 13:15:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 211 ms / 1,500 ms
コード長 2,640 bytes
コンパイル時間 2,780 ms
コンパイル使用メモリ 89,524 KB
実行使用メモリ 55,988 KB
最終ジャッジ日時 2024-11-06 09:00:08
合計ジャッジ時間 16,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
55,228 KB
testcase_01 AC 198 ms
55,520 KB
testcase_02 AC 204 ms
55,440 KB
testcase_03 AC 202 ms
55,540 KB
testcase_04 AC 194 ms
55,440 KB
testcase_05 AC 54 ms
50,040 KB
testcase_06 AC 119 ms
55,056 KB
testcase_07 AC 54 ms
50,304 KB
testcase_08 AC 116 ms
54,864 KB
testcase_09 AC 54 ms
50,476 KB
testcase_10 AC 196 ms
55,672 KB
testcase_11 AC 203 ms
55,660 KB
testcase_12 AC 202 ms
55,196 KB
testcase_13 AC 198 ms
55,812 KB
testcase_14 AC 199 ms
55,784 KB
testcase_15 AC 201 ms
55,700 KB
testcase_16 AC 203 ms
55,572 KB
testcase_17 AC 199 ms
55,660 KB
testcase_18 AC 201 ms
55,312 KB
testcase_19 AC 202 ms
55,384 KB
testcase_20 AC 204 ms
55,676 KB
testcase_21 AC 203 ms
55,516 KB
testcase_22 AC 200 ms
55,708 KB
testcase_23 AC 203 ms
55,632 KB
testcase_24 AC 200 ms
55,688 KB
testcase_25 AC 203 ms
55,728 KB
testcase_26 AC 204 ms
55,740 KB
testcase_27 AC 203 ms
55,572 KB
testcase_28 AC 204 ms
55,800 KB
testcase_29 AC 200 ms
55,680 KB
testcase_30 AC 203 ms
55,844 KB
testcase_31 AC 204 ms
55,424 KB
testcase_32 AC 194 ms
55,472 KB
testcase_33 AC 205 ms
55,716 KB
testcase_34 AC 204 ms
55,464 KB
testcase_35 AC 205 ms
55,540 KB
testcase_36 AC 211 ms
55,632 KB
testcase_37 AC 200 ms
55,404 KB
testcase_38 AC 194 ms
55,920 KB
testcase_39 AC 205 ms
55,656 KB
testcase_40 AC 206 ms
55,988 KB
testcase_41 AC 206 ms
55,416 KB
testcase_42 AC 208 ms
55,416 KB
testcase_43 AC 200 ms
55,812 KB
testcase_44 AC 206 ms
55,360 KB
testcase_45 AC 210 ms
55,776 KB
testcase_46 AC 209 ms
55,860 KB
testcase_47 AC 210 ms
55,536 KB
testcase_48 AC 205 ms
55,356 KB
testcase_49 AC 204 ms
55,204 KB
testcase_50 AC 205 ms
55,640 KB
testcase_51 AC 55 ms
50,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (n-- > 0) {
            sb.append(new Num(sc.nextInt(), 0).pow(sc.nextInt())).append("\n");
        }
        System.out.print(sb);
    }
    
    static class Num {
        double value;
        long base;
        
        public Num(double value, long base) {
            this.value = value;
            this.base = base;
            normalize();
        }
        
        private void normalize() {
            while (value >= 10) {
                value /= 10;
                base++;
            }
        }
        
        public Num multiply(Num x) {
            return new Num(value * x.value, base + x.base);
        }
        
        public Num pow(long p) {
            if (p == 0) {
                return new Num(1, 0);
            } else if (p % 2 == 0) {
                return multiply(this).pow(p / 2);
            } else {
                return pow(p - 1).multiply(this);
            }
        }
        
        public String toString() {
            int ans = (int)(value * 10);
            return new StringBuilder().append(ans /10).append(" ").append(ans % 10).append(" ").append(base).toString();
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0