結果

問題 No.219 巨大数の概算
ユーザー tentententen
提出日時 2023-11-15 16:20:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 1,500 ms
コード長 2,762 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 92,448 KB
実行使用メモリ 47,024 KB
最終ジャッジ日時 2024-09-26 04:38:16
合計ジャッジ時間 16,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
44,936 KB
testcase_01 AC 230 ms
44,692 KB
testcase_02 AC 238 ms
45,584 KB
testcase_03 AC 221 ms
45,424 KB
testcase_04 AC 217 ms
45,424 KB
testcase_05 AC 92 ms
40,188 KB
testcase_06 AC 137 ms
41,852 KB
testcase_07 AC 90 ms
39,996 KB
testcase_08 AC 146 ms
43,116 KB
testcase_09 AC 88 ms
40,576 KB
testcase_10 AC 229 ms
45,540 KB
testcase_11 AC 226 ms
47,024 KB
testcase_12 AC 231 ms
45,056 KB
testcase_13 AC 233 ms
45,160 KB
testcase_14 AC 242 ms
45,188 KB
testcase_15 AC 220 ms
45,188 KB
testcase_16 AC 224 ms
45,392 KB
testcase_17 AC 229 ms
45,572 KB
testcase_18 AC 225 ms
45,152 KB
testcase_19 AC 226 ms
44,964 KB
testcase_20 AC 227 ms
45,676 KB
testcase_21 AC 228 ms
45,340 KB
testcase_22 AC 225 ms
45,596 KB
testcase_23 AC 232 ms
45,188 KB
testcase_24 AC 221 ms
45,240 KB
testcase_25 AC 230 ms
45,124 KB
testcase_26 AC 231 ms
45,244 KB
testcase_27 AC 229 ms
45,112 KB
testcase_28 AC 219 ms
45,288 KB
testcase_29 AC 230 ms
45,316 KB
testcase_30 AC 244 ms
45,256 KB
testcase_31 AC 231 ms
45,180 KB
testcase_32 AC 225 ms
46,284 KB
testcase_33 AC 228 ms
45,640 KB
testcase_34 AC 220 ms
45,108 KB
testcase_35 AC 229 ms
44,968 KB
testcase_36 AC 225 ms
45,308 KB
testcase_37 AC 226 ms
45,020 KB
testcase_38 AC 222 ms
45,356 KB
testcase_39 AC 221 ms
45,928 KB
testcase_40 AC 218 ms
45,520 KB
testcase_41 AC 227 ms
45,036 KB
testcase_42 AC 224 ms
45,900 KB
testcase_43 AC 214 ms
45,652 KB
testcase_44 AC 220 ms
45,384 KB
testcase_45 AC 222 ms
46,012 KB
testcase_46 AC 236 ms
45,432 KB
testcase_47 AC 229 ms
45,464 KB
testcase_48 AC 230 ms
45,332 KB
testcase_49 AC 214 ms
46,060 KB
testcase_50 AC 228 ms
45,312 KB
testcase_51 AC 87 ms
40,404 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(pow(new Num(sc.nextInt()), sc.nextInt())).append("\n");
        }
        System.out.print(sb);
    }
    
    static Num pow(Num x, int p) {
        if (p == 0) {
            return new Num(1);
        } 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 size;
        
        public Num(double value, long size) {
            this.value = value;
            this.size = size;
            normalize();
        }
        
        public Num(double value) {
            this(value, 0);
        }
        
        private void normalize() {
            while (value >= 10) {
                value /= 10;
                size++;
            }
        }
        
        public Num pow2() {
            return new Num(value * value, size * 2);
        }
        
        public Num multiply(Num x) {
            return new Num(value * x.value, size + x.size);
        }
        
        public String toString() {
            int first = (int)(value);
            int second = (int)((value - first) * 10);
            return first + " " + second + " " + size;
        }
    }
}
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