結果

問題 No.219 巨大数の概算
ユーザー chocoruskchocorusk
提出日時 2020-10-03 13:26:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 905 ms / 1,500 ms
コード長 527 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 63,748 KB
最終ジャッジ日時 2024-07-18 04:22:18
合計ジャッジ時間 47,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 860 ms
62,824 KB
testcase_01 AC 859 ms
63,080 KB
testcase_02 AC 856 ms
63,452 KB
testcase_03 AC 842 ms
62,920 KB
testcase_04 AC 866 ms
63,088 KB
testcase_05 AC 175 ms
55,368 KB
testcase_06 AC 401 ms
61,568 KB
testcase_07 AC 178 ms
55,360 KB
testcase_08 AC 392 ms
61,276 KB
testcase_09 AC 182 ms
55,380 KB
testcase_10 AC 867 ms
62,760 KB
testcase_11 AC 858 ms
63,044 KB
testcase_12 AC 856 ms
63,376 KB
testcase_13 AC 869 ms
63,076 KB
testcase_14 AC 811 ms
62,944 KB
testcase_15 AC 872 ms
62,980 KB
testcase_16 AC 877 ms
63,748 KB
testcase_17 AC 892 ms
63,400 KB
testcase_18 AC 905 ms
62,932 KB
testcase_19 AC 878 ms
63,012 KB
testcase_20 AC 889 ms
63,076 KB
testcase_21 AC 878 ms
63,144 KB
testcase_22 AC 866 ms
63,076 KB
testcase_23 AC 860 ms
63,588 KB
testcase_24 AC 853 ms
62,884 KB
testcase_25 AC 852 ms
63,196 KB
testcase_26 AC 838 ms
62,900 KB
testcase_27 AC 854 ms
63,320 KB
testcase_28 AC 867 ms
62,928 KB
testcase_29 AC 848 ms
63,012 KB
testcase_30 AC 851 ms
63,104 KB
testcase_31 AC 851 ms
63,200 KB
testcase_32 AC 864 ms
63,400 KB
testcase_33 AC 868 ms
63,056 KB
testcase_34 AC 879 ms
63,396 KB
testcase_35 AC 849 ms
63,256 KB
testcase_36 AC 846 ms
62,848 KB
testcase_37 AC 806 ms
62,936 KB
testcase_38 AC 870 ms
63,064 KB
testcase_39 AC 861 ms
63,316 KB
testcase_40 AC 853 ms
62,896 KB
testcase_41 AC 873 ms
63,132 KB
testcase_42 AC 857 ms
63,116 KB
testcase_43 AC 849 ms
62,624 KB
testcase_44 AC 884 ms
63,664 KB
testcase_45 AC 847 ms
63,144 KB
testcase_46 AC 855 ms
63,220 KB
testcase_47 AC 849 ms
63,208 KB
testcase_48 AC 867 ms
63,208 KB
testcase_49 AC 835 ms
62,688 KB
testcase_50 AC 853 ms
62,728 KB
testcase_51 AC 185 ms
55,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		Scanner scanner=new Scanner(System.in);
		PrintWriter out=new PrintWriter(System.out);
		int n=scanner.nextInt();
		for(int i=0; i<n; i++) {
			double a=scanner.nextDouble();
			double b=scanner.nextDouble();
			double c=b*Math.log10(a);
			long z=(long)c;
			int xy=(int)(Math.pow(10, c-(double)z)*10);
			int x=xy/10;
			int y=xy%10;
			out.println(x+" "+y+" "+z);
		}
		out.close();
		scanner.close();
	}
}
0