結果

問題 No.668 6.0*10^23
ユーザー tentententen
提出日時 2023-02-15 15:49:23
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,691 bytes
コンパイル時間 2,705 ms
コンパイル使用メモリ 90,952 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-07-18 00:55:45
合計ジャッジ時間 9,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
44,104 KB
testcase_02 AC 114 ms
43,268 KB
testcase_03 AC 115 ms
43,220 KB
testcase_04 AC 114 ms
43,584 KB
testcase_05 AC 103 ms
43,128 KB
testcase_06 AC 113 ms
43,488 KB
testcase_07 AC 99 ms
43,404 KB
testcase_08 AC 89 ms
43,060 KB
testcase_09 AC 94 ms
43,156 KB
testcase_10 WA -
testcase_11 AC 131 ms
43,876 KB
testcase_12 AC 111 ms
43,320 KB
testcase_13 WA -
testcase_14 AC 116 ms
43,048 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 128 ms
43,980 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 111 ms
42,896 KB
testcase_21 AC 111 ms
43,228 KB
testcase_22 WA -
testcase_23 AC 115 ms
43,168 KB
testcase_24 AC 96 ms
43,264 KB
testcase_25 AC 128 ms
43,980 KB
testcase_26 AC 102 ms
43,408 KB
testcase_27 AC 114 ms
43,564 KB
testcase_28 AC 132 ms
43,976 KB
testcase_29 AC 112 ms
43,584 KB
testcase_30 AC 131 ms
43,676 KB
testcase_31 AC 111 ms
43,284 KB
testcase_32 AC 96 ms
43,536 KB
testcase_33 AC 119 ms
43,140 KB
testcase_34 AC 110 ms
43,380 KB
testcase_35 AC 107 ms
43,140 KB
testcase_36 AC 114 ms
43,596 KB
testcase_37 AC 128 ms
43,920 KB
testcase_38 AC 110 ms
43,344 KB
testcase_39 AC 111 ms
43,040 KB
testcase_40 AC 128 ms
43,992 KB
testcase_41 WA -
testcase_42 AC 112 ms
43,336 KB
testcase_43 AC 129 ms
43,776 KB
testcase_44 WA -
testcase_45 AC 90 ms
42,904 KB
testcase_46 AC 98 ms
43,400 KB
testcase_47 AC 88 ms
41,504 KB
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

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++;
        }
        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