結果

問題 No.219 巨大数の概算
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-24 22:25:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,276 ms / 1,500 ms
コード長 771 bytes
コンパイル時間 2,605 ms
コンパイル使用メモリ 81,500 KB
実行使用メモリ 64,236 KB
最終ジャッジ日時 2024-09-19 12:32:16
合計ジャッジ時間 59,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,078 ms
52,440 KB
testcase_01 AC 1,138 ms
53,236 KB
testcase_02 AC 927 ms
53,040 KB
testcase_03 AC 1,186 ms
52,576 KB
testcase_04 AC 786 ms
52,768 KB
testcase_05 AC 170 ms
43,548 KB
testcase_06 AC 525 ms
52,104 KB
testcase_07 AC 173 ms
43,332 KB
testcase_08 AC 521 ms
52,604 KB
testcase_09 AC 171 ms
43,572 KB
testcase_10 AC 1,146 ms
52,728 KB
testcase_11 AC 1,155 ms
52,636 KB
testcase_12 AC 1,084 ms
53,188 KB
testcase_13 AC 958 ms
53,228 KB
testcase_14 AC 1,191 ms
53,116 KB
testcase_15 AC 1,021 ms
52,820 KB
testcase_16 AC 1,153 ms
52,504 KB
testcase_17 AC 1,154 ms
52,824 KB
testcase_18 AC 1,150 ms
53,352 KB
testcase_19 AC 1,112 ms
53,456 KB
testcase_20 AC 1,164 ms
53,844 KB
testcase_21 AC 1,217 ms
53,228 KB
testcase_22 AC 1,276 ms
52,444 KB
testcase_23 AC 1,172 ms
53,432 KB
testcase_24 AC 1,140 ms
52,936 KB
testcase_25 AC 1,192 ms
53,020 KB
testcase_26 AC 1,174 ms
52,728 KB
testcase_27 AC 1,142 ms
52,548 KB
testcase_28 AC 1,226 ms
53,440 KB
testcase_29 AC 1,215 ms
52,932 KB
testcase_30 AC 1,212 ms
53,500 KB
testcase_31 AC 1,184 ms
52,404 KB
testcase_32 AC 1,176 ms
53,136 KB
testcase_33 AC 1,177 ms
53,096 KB
testcase_34 AC 1,162 ms
52,424 KB
testcase_35 AC 1,165 ms
53,160 KB
testcase_36 AC 1,130 ms
52,724 KB
testcase_37 AC 1,182 ms
64,152 KB
testcase_38 AC 1,185 ms
56,016 KB
testcase_39 AC 1,075 ms
53,324 KB
testcase_40 AC 1,093 ms
53,468 KB
testcase_41 AC 1,020 ms
52,332 KB
testcase_42 AC 1,018 ms
64,236 KB
testcase_43 AC 1,084 ms
52,928 KB
testcase_44 AC 1,127 ms
52,428 KB
testcase_45 AC 1,139 ms
53,084 KB
testcase_46 AC 1,143 ms
53,192 KB
testcase_47 AC 1,070 ms
52,936 KB
testcase_48 AC 1,152 ms
53,040 KB
testcase_49 AC 1,095 ms
54,148 KB
testcase_50 AC 1,079 ms
53,356 KB
testcase_51 AC 176 ms
43,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigDecimal;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    for(int i = 0; i < n; i++) {
      double a = sc.nextDouble();
      double b = sc.nextDouble();
      BigDecimal A = new BigDecimal((double)Math.log10(a));
      BigDecimal B = new BigDecimal(b);
      BigDecimal t = B.multiply(A);
      long z = t.longValue();
      BigDecimal Z = new BigDecimal(z);
      BigDecimal t1 = t.subtract(Z);
      double t2 = (double)Math.pow(10, t1.doubleValue());
      String s = String.valueOf(t2);
      String x = String.valueOf(s.charAt(0));
      String y = String.valueOf(s.charAt(2));
      System.out.println(x + " " + y + " " + z);
    }
  }
}
0