結果

問題 No.668 6.0*10^23
ユーザー tentententen
提出日時 2020-09-04 08:57:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 86,716 KB
実行使用メモリ 56,268 KB
最終ジャッジ日時 2024-11-25 01:19:06
合計ジャッジ時間 13,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
54,736 KB
testcase_01 AC 224 ms
54,740 KB
testcase_02 AC 209 ms
54,996 KB
testcase_03 AC 189 ms
55,172 KB
testcase_04 AC 198 ms
54,724 KB
testcase_05 AC 183 ms
55,172 KB
testcase_06 AC 191 ms
54,748 KB
testcase_07 AC 147 ms
54,732 KB
testcase_08 AC 162 ms
54,776 KB
testcase_09 AC 158 ms
54,960 KB
testcase_10 AC 189 ms
54,792 KB
testcase_11 AC 226 ms
54,940 KB
testcase_12 AC 180 ms
55,060 KB
testcase_13 AC 204 ms
55,232 KB
testcase_14 AC 224 ms
55,208 KB
testcase_15 AC 169 ms
55,216 KB
testcase_16 AC 180 ms
55,240 KB
testcase_17 AC 211 ms
54,992 KB
testcase_18 AC 198 ms
55,044 KB
testcase_19 AC 172 ms
54,988 KB
testcase_20 AC 193 ms
55,296 KB
testcase_21 AC 206 ms
56,036 KB
testcase_22 AC 215 ms
55,052 KB
testcase_23 AC 223 ms
54,792 KB
testcase_24 AC 172 ms
54,864 KB
testcase_25 AC 220 ms
56,064 KB
testcase_26 AC 167 ms
54,772 KB
testcase_27 AC 202 ms
54,740 KB
testcase_28 AC 221 ms
55,076 KB
testcase_29 AC 186 ms
54,880 KB
testcase_30 AC 230 ms
56,140 KB
testcase_31 AC 193 ms
54,892 KB
testcase_32 AC 167 ms
55,116 KB
testcase_33 AC 224 ms
55,468 KB
testcase_34 AC 183 ms
55,028 KB
testcase_35 AC 163 ms
54,696 KB
testcase_36 AC 222 ms
55,312 KB
testcase_37 AC 222 ms
55,840 KB
testcase_38 AC 191 ms
55,356 KB
testcase_39 AC 220 ms
54,928 KB
testcase_40 AC 225 ms
55,180 KB
testcase_41 AC 219 ms
54,812 KB
testcase_42 AC 200 ms
54,972 KB
testcase_43 AC 240 ms
55,168 KB
testcase_44 AC 235 ms
56,268 KB
testcase_45 AC 161 ms
54,888 KB
testcase_46 AC 164 ms
54,772 KB
testcase_47 AC 165 ms
54,744 KB
testcase_48 AC 166 ms
54,732 KB
testcase_49 AC 155 ms
55,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	String s = sc.next();
    	int length = s.length();
    	int num = Integer.parseInt(s.substring(0, 3));
    	long value = Math.round(num / 10.0);
    	if (value == 100) {
    	    value /= 10;
    	    length++;
    	}
    	long first = value / 10;
    	long second = value % 10;
    	System.out.println(first + "." + second + "*10^" + (length - 1));
	}
}
0