結果

問題 No.219 巨大数の概算
ユーザー 37zigen37zigen
提出日時 2016-05-03 00:32:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,027 ms / 1,500 ms
コード長 527 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 53,012 KB
最終ジャッジ日時 2024-07-18 12:11:13
合計ジャッジ時間 52,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 989 ms
52,020 KB
testcase_01 AC 986 ms
51,788 KB
testcase_02 AC 988 ms
51,732 KB
testcase_03 AC 1,005 ms
51,708 KB
testcase_04 AC 984 ms
51,944 KB
testcase_05 AC 163 ms
42,936 KB
testcase_06 AC 433 ms
50,036 KB
testcase_07 AC 172 ms
43,028 KB
testcase_08 AC 428 ms
50,476 KB
testcase_09 AC 176 ms
43,008 KB
testcase_10 AC 1,012 ms
51,828 KB
testcase_11 AC 989 ms
51,484 KB
testcase_12 AC 1,016 ms
51,568 KB
testcase_13 AC 973 ms
51,504 KB
testcase_14 AC 997 ms
51,776 KB
testcase_15 AC 974 ms
52,164 KB
testcase_16 AC 1,006 ms
51,564 KB
testcase_17 AC 974 ms
52,052 KB
testcase_18 AC 985 ms
51,664 KB
testcase_19 AC 858 ms
51,792 KB
testcase_20 AC 970 ms
51,744 KB
testcase_21 AC 985 ms
51,432 KB
testcase_22 AC 996 ms
51,668 KB
testcase_23 AC 997 ms
52,044 KB
testcase_24 AC 821 ms
52,140 KB
testcase_25 AC 981 ms
51,660 KB
testcase_26 AC 971 ms
51,960 KB
testcase_27 AC 985 ms
51,748 KB
testcase_28 AC 994 ms
52,208 KB
testcase_29 AC 968 ms
52,932 KB
testcase_30 AC 1,022 ms
51,740 KB
testcase_31 AC 1,004 ms
51,832 KB
testcase_32 AC 920 ms
51,912 KB
testcase_33 AC 920 ms
51,464 KB
testcase_34 AC 1,007 ms
53,012 KB
testcase_35 AC 1,003 ms
51,968 KB
testcase_36 AC 992 ms
51,496 KB
testcase_37 AC 1,026 ms
51,780 KB
testcase_38 AC 988 ms
51,520 KB
testcase_39 AC 977 ms
52,472 KB
testcase_40 AC 1,001 ms
51,500 KB
testcase_41 AC 993 ms
52,760 KB
testcase_42 AC 841 ms
51,008 KB
testcase_43 AC 981 ms
52,096 KB
testcase_44 AC 993 ms
51,784 KB
testcase_45 AC 854 ms
52,648 KB
testcase_46 AC 1,027 ms
52,988 KB
testcase_47 AC 1,014 ms
51,728 KB
testcase_48 AC 833 ms
51,632 KB
testcase_49 AC 986 ms
51,984 KB
testcase_50 AC 974 ms
51,648 KB
testcase_51 AC 174 ms
43,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		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();
			
			//10の指数
			long z=(long)(b*Math.log10(a));
			
			double d=(b*Math.log10(a)%1);
			d=(Math.pow(10, d)*10);
			String ans=String.valueOf(d);
			System.out.println(ans.charAt(0)+" "+ans.charAt(1)+" "+z);

		}
	}
}
0