結果

問題 No.668 6.0*10^23
ユーザー tentententen
提出日時 2024-07-23 13:08:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 1,539 bytes
コンパイル時間 2,926 ms
コンパイル使用メモリ 79,824 KB
実行使用メモリ 53,612 KB
最終ジャッジ日時 2024-07-23 13:08:25
合計ジャッジ時間 10,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
53,088 KB
testcase_01 AC 129 ms
53,508 KB
testcase_02 AC 113 ms
53,272 KB
testcase_03 AC 109 ms
53,064 KB
testcase_04 AC 110 ms
53,132 KB
testcase_05 AC 107 ms
52,840 KB
testcase_06 AC 112 ms
53,088 KB
testcase_07 AC 89 ms
51,540 KB
testcase_08 AC 94 ms
52,900 KB
testcase_09 AC 101 ms
53,008 KB
testcase_10 AC 109 ms
52,836 KB
testcase_11 AC 129 ms
53,464 KB
testcase_12 AC 108 ms
53,060 KB
testcase_13 AC 129 ms
53,612 KB
testcase_14 AC 124 ms
53,464 KB
testcase_15 AC 96 ms
53,008 KB
testcase_16 AC 103 ms
52,964 KB
testcase_17 AC 126 ms
53,312 KB
testcase_18 AC 110 ms
53,132 KB
testcase_19 AC 104 ms
52,848 KB
testcase_20 AC 111 ms
53,288 KB
testcase_21 AC 110 ms
52,888 KB
testcase_22 AC 126 ms
53,456 KB
testcase_23 AC 113 ms
53,232 KB
testcase_24 AC 95 ms
52,836 KB
testcase_25 AC 130 ms
53,512 KB
testcase_26 AC 103 ms
52,824 KB
testcase_27 AC 113 ms
53,132 KB
testcase_28 AC 129 ms
53,592 KB
testcase_29 AC 110 ms
53,172 KB
testcase_30 AC 131 ms
53,560 KB
testcase_31 AC 114 ms
52,972 KB
testcase_32 AC 100 ms
52,964 KB
testcase_33 AC 119 ms
53,104 KB
testcase_34 AC 108 ms
53,008 KB
testcase_35 AC 110 ms
52,936 KB
testcase_36 AC 115 ms
53,084 KB
testcase_37 AC 128 ms
53,460 KB
testcase_38 AC 110 ms
52,952 KB
testcase_39 AC 116 ms
53,216 KB
testcase_40 AC 129 ms
53,312 KB
testcase_41 AC 116 ms
53,140 KB
testcase_42 AC 109 ms
53,088 KB
testcase_43 AC 127 ms
53,520 KB
testcase_44 AC 130 ms
53,476 KB
testcase_45 AC 90 ms
53,096 KB
testcase_46 AC 102 ms
52,116 KB
testcase_47 AC 97 ms
52,924 KB
testcase_48 AC 92 ms
52,744 KB
testcase_49 AC 89 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        int base = inputs[0] - '0';
        int next = inputs[1] - '0';
        int length = inputs.length - 1;
        if (inputs[2] >= '5') {
            next++;
        }
        if (next == 10) {
            base++;
            next = 0;
            if (base == 10) {
                base = 1;
                length++;
            }
        }
        System.out.println(base + "." + next + "*10^" + length);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0