結果

問題 No.668 6.0*10^23
ユーザー htensaihtensai
提出日時 2019-11-13 08:57:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 76,012 KB
実行使用メモリ 44,452 KB
最終ジャッジ日時 2024-09-21 21:03:11
合計ジャッジ時間 13,459 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
42,260 KB
testcase_01 AC 227 ms
44,412 KB
testcase_02 AC 210 ms
42,912 KB
testcase_03 AC 175 ms
42,692 KB
testcase_04 AC 193 ms
43,324 KB
testcase_05 AC 175 ms
42,476 KB
testcase_06 AC 179 ms
42,828 KB
testcase_07 AC 142 ms
42,308 KB
testcase_08 AC 133 ms
41,852 KB
testcase_09 AC 148 ms
42,144 KB
testcase_10 AC 169 ms
42,800 KB
testcase_11 AC 200 ms
44,140 KB
testcase_12 AC 157 ms
42,180 KB
testcase_13 AC 196 ms
43,716 KB
testcase_14 AC 225 ms
44,052 KB
testcase_15 AC 152 ms
42,120 KB
testcase_16 AC 156 ms
42,476 KB
testcase_17 AC 224 ms
44,116 KB
testcase_18 AC 179 ms
42,868 KB
testcase_19 AC 169 ms
42,616 KB
testcase_20 AC 201 ms
44,452 KB
testcase_21 AC 199 ms
43,192 KB
testcase_22 AC 206 ms
43,760 KB
testcase_23 AC 208 ms
43,184 KB
testcase_24 AC 148 ms
42,360 KB
testcase_25 AC 219 ms
43,732 KB
testcase_26 AC 142 ms
42,228 KB
testcase_27 AC 217 ms
42,776 KB
testcase_28 AC 203 ms
43,948 KB
testcase_29 AC 174 ms
42,848 KB
testcase_30 AC 212 ms
43,796 KB
testcase_31 AC 207 ms
43,020 KB
testcase_32 AC 178 ms
42,688 KB
testcase_33 AC 213 ms
44,016 KB
testcase_34 AC 175 ms
42,704 KB
testcase_35 AC 174 ms
42,604 KB
testcase_36 AC 228 ms
43,236 KB
testcase_37 AC 211 ms
44,040 KB
testcase_38 AC 180 ms
42,816 KB
testcase_39 AC 215 ms
43,184 KB
testcase_40 AC 219 ms
43,700 KB
testcase_41 AC 230 ms
44,308 KB
testcase_42 AC 184 ms
42,504 KB
testcase_43 AC 227 ms
44,080 KB
testcase_44 AC 212 ms
43,364 KB
testcase_45 AC 154 ms
42,296 KB
testcase_46 AC 155 ms
42,456 KB
testcase_47 AC 146 ms
42,360 KB
testcase_48 AC 144 ms
42,288 KB
testcase_49 AC 144 ms
42,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int first = arr[0] - '0';
		int second = arr[1] - '0';
		int third = arr[2] - '0';
		int len = arr.length - 1;
		if (third >= 5) {
		    second++;
		    if (second >= 10) {
		        second = 0;
		        first++;
		        if (first >= 10) {
		            first = 1;
		            len++;
		        }
		    }
		}
		System.out.println(first + "." + second + "*10^" + len);
  }
 }
0