結果

問題 No.668 6.0*10^23
ユーザー fal_rndfal_rnd
提出日時 2018-04-25 10:09:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 78,368 KB
実行使用メモリ 57,232 KB
最終ジャッジ日時 2024-06-30 06:12:51
合計ジャッジ時間 13,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,716 KB
testcase_01 AC 231 ms
55,812 KB
testcase_02 AC 220 ms
56,612 KB
testcase_03 AC 191 ms
55,044 KB
testcase_04 AC 210 ms
56,132 KB
testcase_05 AC 163 ms
54,688 KB
testcase_06 AC 207 ms
56,308 KB
testcase_07 AC 154 ms
54,592 KB
testcase_08 AC 142 ms
54,680 KB
testcase_09 AC 156 ms
54,612 KB
testcase_10 AC 184 ms
54,844 KB
testcase_11 AC 233 ms
55,820 KB
testcase_12 AC 166 ms
54,652 KB
testcase_13 AC 222 ms
54,948 KB
testcase_14 AC 214 ms
55,384 KB
testcase_15 AC 161 ms
54,596 KB
testcase_16 AC 179 ms
54,948 KB
testcase_17 AC 231 ms
55,860 KB
testcase_18 AC 209 ms
55,500 KB
testcase_19 AC 179 ms
54,956 KB
testcase_20 AC 204 ms
55,236 KB
testcase_21 AC 192 ms
54,876 KB
testcase_22 AC 221 ms
55,188 KB
testcase_23 AC 216 ms
54,980 KB
testcase_24 AC 174 ms
54,864 KB
testcase_25 AC 231 ms
55,716 KB
testcase_26 AC 165 ms
54,976 KB
testcase_27 AC 212 ms
55,084 KB
testcase_28 AC 210 ms
57,232 KB
testcase_29 AC 192 ms
55,120 KB
testcase_30 AC 219 ms
54,960 KB
testcase_31 AC 215 ms
54,832 KB
testcase_32 AC 176 ms
54,992 KB
testcase_33 AC 233 ms
55,892 KB
testcase_34 AC 187 ms
54,788 KB
testcase_35 AC 183 ms
55,048 KB
testcase_36 AC 213 ms
56,376 KB
testcase_37 AC 217 ms
55,360 KB
testcase_38 AC 216 ms
56,068 KB
testcase_39 AC 220 ms
57,116 KB
testcase_40 AC 234 ms
55,332 KB
testcase_41 AC 217 ms
54,840 KB
testcase_42 AC 192 ms
54,876 KB
testcase_43 AC 211 ms
54,968 KB
testcase_44 AC 235 ms
56,120 KB
testcase_45 AC 161 ms
55,012 KB
testcase_46 AC 155 ms
54,968 KB
testcase_47 AC 158 ms
54,728 KB
testcase_48 AC 156 ms
54,952 KB
testcase_49 AC 158 ms
54,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
class Main {
    static Scanner s=new Scanner(System.in);
    static int gInt(){return Integer.parseInt(s.next());}
    public static void main(String[]$){
        String v=s.next();
        int i=Integer.parseInt(v.substring(0,3))+5;
        double d=i>=1000?i/100/10.0:i/10/10.0;
        System.out.println(d+"*10^"+(i>=1000?v.length():v.length()-1));
    }
}
0