結果

問題 No.668 6.0*10^23
ユーザー tentententen
提出日時 2023-02-15 15:51:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 1,920 bytes
コンパイル時間 2,746 ms
コンパイル使用メモリ 94,812 KB
実行使用メモリ 41,200 KB
最終ジャッジ日時 2024-07-18 00:57:52
合計ジャッジ時間 9,569 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
37,940 KB
testcase_01 AC 130 ms
41,184 KB
testcase_02 AC 113 ms
40,296 KB
testcase_03 AC 108 ms
40,288 KB
testcase_04 AC 107 ms
40,060 KB
testcase_05 AC 114 ms
40,116 KB
testcase_06 AC 107 ms
40,056 KB
testcase_07 AC 98 ms
39,816 KB
testcase_08 AC 101 ms
40,128 KB
testcase_09 AC 91 ms
40,604 KB
testcase_10 AC 87 ms
38,080 KB
testcase_11 AC 131 ms
41,200 KB
testcase_12 AC 109 ms
40,024 KB
testcase_13 AC 105 ms
39,352 KB
testcase_14 AC 114 ms
40,672 KB
testcase_15 AC 78 ms
38,316 KB
testcase_16 AC 81 ms
38,316 KB
testcase_17 AC 127 ms
40,812 KB
testcase_18 AC 85 ms
38,436 KB
testcase_19 AC 84 ms
38,256 KB
testcase_20 AC 117 ms
40,992 KB
testcase_21 AC 117 ms
40,572 KB
testcase_22 AC 130 ms
40,828 KB
testcase_23 AC 113 ms
40,372 KB
testcase_24 AC 95 ms
39,800 KB
testcase_25 AC 129 ms
41,068 KB
testcase_26 AC 100 ms
39,752 KB
testcase_27 AC 115 ms
40,320 KB
testcase_28 AC 129 ms
41,144 KB
testcase_29 AC 108 ms
40,384 KB
testcase_30 AC 128 ms
41,152 KB
testcase_31 AC 110 ms
40,044 KB
testcase_32 AC 98 ms
40,108 KB
testcase_33 AC 119 ms
40,576 KB
testcase_34 AC 110 ms
40,208 KB
testcase_35 AC 106 ms
40,016 KB
testcase_36 AC 113 ms
40,728 KB
testcase_37 AC 129 ms
41,132 KB
testcase_38 AC 111 ms
40,520 KB
testcase_39 AC 112 ms
40,352 KB
testcase_40 AC 127 ms
40,876 KB
testcase_41 AC 116 ms
40,440 KB
testcase_42 AC 110 ms
40,372 KB
testcase_43 AC 129 ms
40,820 KB
testcase_44 AC 109 ms
39,292 KB
testcase_45 AC 87 ms
38,592 KB
testcase_46 AC 100 ms
40,236 KB
testcase_47 AC 87 ms
38,248 KB
testcase_48 AC 94 ms
39,936 KB
testcase_49 AC 69 ms
38,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 17;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        char[] inputs = sc.next().toCharArray();
        int a = inputs[0] - '0';
        int b = inputs[1] - '0';
        if (inputs[2] >= '5') {
            b++;
            if (b == 10) {
                b = 0;
                a++;
                if (a == 10) {
                    System.out.println("1.0*10^" + inputs.length);
                    return;
                }
            }
        }
        System.out.println(a + "." + b + "*10^" + (inputs.length - 1));
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0