結果

問題 No.219 巨大数の概算
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-25 17:23:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 565 ms / 1,500 ms
コード長 534 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 48,980 KB
最終ジャッジ日時 2024-07-18 12:17:48
合計ジャッジ時間 31,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
48,884 KB
testcase_01 AC 548 ms
48,960 KB
testcase_02 AC 544 ms
48,744 KB
testcase_03 AC 524 ms
48,888 KB
testcase_04 AC 531 ms
48,916 KB
testcase_05 AC 172 ms
42,564 KB
testcase_06 AC 325 ms
45,416 KB
testcase_07 AC 171 ms
42,704 KB
testcase_08 AC 313 ms
44,908 KB
testcase_09 AC 170 ms
42,744 KB
testcase_10 AC 542 ms
48,912 KB
testcase_11 AC 529 ms
48,804 KB
testcase_12 AC 534 ms
48,184 KB
testcase_13 AC 537 ms
48,512 KB
testcase_14 AC 536 ms
48,640 KB
testcase_15 AC 532 ms
48,920 KB
testcase_16 AC 557 ms
48,836 KB
testcase_17 AC 527 ms
48,544 KB
testcase_18 AC 502 ms
47,320 KB
testcase_19 AC 528 ms
48,816 KB
testcase_20 AC 523 ms
48,848 KB
testcase_21 AC 547 ms
48,964 KB
testcase_22 AC 548 ms
48,940 KB
testcase_23 AC 547 ms
48,872 KB
testcase_24 AC 519 ms
47,988 KB
testcase_25 AC 532 ms
48,808 KB
testcase_26 AC 551 ms
48,900 KB
testcase_27 AC 532 ms
48,928 KB
testcase_28 AC 522 ms
48,712 KB
testcase_29 AC 497 ms
47,500 KB
testcase_30 AC 543 ms
48,656 KB
testcase_31 AC 537 ms
48,776 KB
testcase_32 AC 551 ms
48,956 KB
testcase_33 AC 549 ms
48,940 KB
testcase_34 AC 546 ms
48,836 KB
testcase_35 AC 538 ms
48,656 KB
testcase_36 AC 547 ms
48,780 KB
testcase_37 AC 536 ms
48,980 KB
testcase_38 AC 535 ms
48,600 KB
testcase_39 AC 537 ms
48,416 KB
testcase_40 AC 564 ms
48,692 KB
testcase_41 AC 556 ms
48,612 KB
testcase_42 AC 527 ms
48,840 KB
testcase_43 AC 565 ms
48,728 KB
testcase_44 AC 545 ms
48,936 KB
testcase_45 AC 541 ms
48,972 KB
testcase_46 AC 548 ms
48,808 KB
testcase_47 AC 556 ms
48,220 KB
testcase_48 AC 536 ms
48,692 KB
testcase_49 AC 517 ms
48,848 KB
testcase_50 AC 550 ms
48,296 KB
testcase_51 AC 170 ms
43,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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++){
            long A = sc.nextLong();
            long B = sc.nextLong();
            double c = Math.log10(A)*B;
            long d = (long)c;
            double e = c-(double)d;
            int f = (int)(Math.pow(10,e)*10);
            int g = f/10;
            int h = f%10;
            System.out.println(g+" "+h+" "+d);
        }
    }
}
0