結果

問題 No.668 6.0*10^23
ユーザー sekiya9311sekiya9311
提出日時 2018-03-23 23:04:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,408 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 79,884 KB
実行使用メモリ 58,304 KB
最終ジャッジ日時 2024-06-30 05:24:03
合計ジャッジ時間 14,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
55,072 KB
testcase_01 WA -
testcase_02 AC 219 ms
55,812 KB
testcase_03 AC 174 ms
55,088 KB
testcase_04 AC 177 ms
55,096 KB
testcase_05 AC 156 ms
55,268 KB
testcase_06 AC 173 ms
55,024 KB
testcase_07 AC 138 ms
54,948 KB
testcase_08 AC 136 ms
54,700 KB
testcase_09 AC 143 ms
54,856 KB
testcase_10 AC 148 ms
54,900 KB
testcase_11 WA -
testcase_12 AC 147 ms
54,840 KB
testcase_13 AC 200 ms
55,044 KB
testcase_14 AC 226 ms
56,168 KB
testcase_15 AC 141 ms
54,560 KB
testcase_16 AC 155 ms
54,952 KB
testcase_17 AC 209 ms
55,748 KB
testcase_18 AC 186 ms
55,304 KB
testcase_19 AC 164 ms
54,888 KB
testcase_20 AC 187 ms
55,284 KB
testcase_21 AC 196 ms
55,648 KB
testcase_22 AC 191 ms
55,932 KB
testcase_23 AC 191 ms
55,248 KB
testcase_24 AC 156 ms
54,772 KB
testcase_25 AC 203 ms
55,928 KB
testcase_26 AC 148 ms
55,028 KB
testcase_27 AC 193 ms
55,344 KB
testcase_28 AC 202 ms
55,124 KB
testcase_29 AC 166 ms
55,016 KB
testcase_30 AC 198 ms
55,068 KB
testcase_31 AC 192 ms
55,512 KB
testcase_32 AC 153 ms
55,004 KB
testcase_33 AC 200 ms
56,044 KB
testcase_34 AC 145 ms
54,840 KB
testcase_35 AC 145 ms
54,508 KB
testcase_36 AC 196 ms
55,380 KB
testcase_37 AC 203 ms
55,112 KB
testcase_38 AC 187 ms
55,000 KB
testcase_39 WA -
testcase_40 AC 215 ms
55,280 KB
testcase_41 AC 230 ms
58,304 KB
testcase_42 AC 184 ms
55,176 KB
testcase_43 AC 208 ms
56,124 KB
testcase_44 AC 202 ms
55,224 KB
testcase_45 AC 134 ms
54,804 KB
testcase_46 AC 127 ms
54,696 KB
testcase_47 AC 137 ms
54,996 KB
testcase_48 AC 136 ms
54,924 KB
testcase_49 AC 125 ms
54,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        No668 solver = new No668();
        solver.solve(1, in, out);
        out.close();
    }

    static class No668 {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            char[] N = in.next().toCharArray();
            int c = 0;
            for (int i = N.length - 1; i > 0; i--) {
                N[i] += c;
                if (N[i] - '0' >= 5) {
                    c = 1;
                } else {
                    c = 0;
                }
            }
            int L = N.length - 1;
            if (N[1] - '0' == 10) {
                N[1] = '0';
                N[0]++;
                //L++;
            }
            if (N[0] - '0' == 10) {
                N[1] = (char) ('0' + (N[0] - '0') % 10);
                N[0] = (char) ('0' + (N[0] - '0') / 10);
                L++;
            }
            out.println((N[0] - '0') + "." + (N[1] - '0') + "*10^" + L);
        }

    }
}

0