結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
54,848 KB
testcase_01 WA -
testcase_02 AC 199 ms
55,120 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 168 ms
54,588 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 134 ms
54,452 KB
testcase_09 AC 131 ms
54,592 KB
testcase_10 AC 163 ms
54,936 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 200 ms
55,248 KB
testcase_14 WA -
testcase_15 AC 157 ms
54,756 KB
testcase_16 AC 162 ms
54,792 KB
testcase_17 WA -
testcase_18 AC 198 ms
56,340 KB
testcase_19 WA -
testcase_20 AC 218 ms
55,452 KB
testcase_21 AC 193 ms
55,236 KB
testcase_22 AC 230 ms
55,872 KB
testcase_23 AC 217 ms
55,708 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 204 ms
54,880 KB
testcase_28 AC 195 ms
55,352 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 192 ms
55,492 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 202 ms
55,768 KB
testcase_38 AC 185 ms
55,192 KB
testcase_39 AC 186 ms
55,064 KB
testcase_40 WA -
testcase_41 AC 197 ms
55,036 KB
testcase_42 AC 207 ms
55,304 KB
testcase_43 WA -
testcase_44 AC 207 ms
54,984 KB
testcase_45 AC 138 ms
54,248 KB
testcase_46 AC 146 ms
54,740 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 146 ms
54,716 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) N[i]++;
                if (N[i] - '0' == 10) {
                    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