結果

問題 No.219 巨大数の概算
ユーザー crazybbb3crazybbb3
提出日時 2017-01-16 22:26:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 1,500 ms
コード長 1,845 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 78,424 KB
実行使用メモリ 44,924 KB
最終ジャッジ日時 2024-07-18 12:19:41
合計ジャッジ時間 15,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 222 ms
44,288 KB
testcase_01 AC 221 ms
44,132 KB
testcase_02 AC 218 ms
43,808 KB
testcase_03 AC 228 ms
44,228 KB
testcase_04 AC 223 ms
44,924 KB
testcase_05 AC 92 ms
40,400 KB
testcase_06 AC 134 ms
41,312 KB
testcase_07 AC 88 ms
40,280 KB
testcase_08 AC 141 ms
41,468 KB
testcase_09 AC 88 ms
40,320 KB
testcase_10 AC 218 ms
44,304 KB
testcase_11 AC 210 ms
44,520 KB
testcase_12 AC 227 ms
43,932 KB
testcase_13 AC 227 ms
44,324 KB
testcase_14 AC 215 ms
44,352 KB
testcase_15 AC 220 ms
44,024 KB
testcase_16 AC 217 ms
43,980 KB
testcase_17 AC 222 ms
44,040 KB
testcase_18 AC 225 ms
44,324 KB
testcase_19 AC 213 ms
43,192 KB
testcase_20 AC 222 ms
44,360 KB
testcase_21 AC 216 ms
44,320 KB
testcase_22 AC 223 ms
44,084 KB
testcase_23 AC 207 ms
44,132 KB
testcase_24 AC 223 ms
44,276 KB
testcase_25 AC 225 ms
44,204 KB
testcase_26 AC 214 ms
44,176 KB
testcase_27 AC 226 ms
44,484 KB
testcase_28 AC 231 ms
44,316 KB
testcase_29 AC 233 ms
44,396 KB
testcase_30 AC 218 ms
43,672 KB
testcase_31 AC 226 ms
44,252 KB
testcase_32 AC 220 ms
44,200 KB
testcase_33 AC 229 ms
44,348 KB
testcase_34 AC 228 ms
44,080 KB
testcase_35 AC 220 ms
44,432 KB
testcase_36 AC 226 ms
44,384 KB
testcase_37 AC 222 ms
44,396 KB
testcase_38 AC 221 ms
44,280 KB
testcase_39 AC 230 ms
44,352 KB
testcase_40 AC 235 ms
43,820 KB
testcase_41 AC 230 ms
43,832 KB
testcase_42 AC 228 ms
44,120 KB
testcase_43 AC 231 ms
44,080 KB
testcase_44 AC 223 ms
44,288 KB
testcase_45 AC 210 ms
43,940 KB
testcase_46 AC 223 ms
44,332 KB
testcase_47 AC 225 ms
44,032 KB
testcase_48 AC 222 ms
44,072 KB
testcase_49 AC 217 ms
44,296 KB
testcase_50 AC 216 ms
44,020 KB
testcase_51 AC 94 ms
40,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.*;

public class Main {

    void solve() throws IOException {
        int n = ni();
        for (int i = 0; i < n; i++) {
            long a = nl(), b = nl();
            double t = Math.log10(a) * b;
            long ans = (long) Math.pow(10, t - (long) t + 1);

            out.println((ans / 10) + " " + ans % 10 + " " + (long) t);
        }
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0