結果

問題 No.668 6.0*10^23
ユーザー 37zigen37zigen
提出日時 2018-03-23 23:11:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 2,904 ms
コンパイル使用メモリ 76,892 KB
実行使用メモリ 56,528 KB
最終ジャッジ日時 2024-06-30 05:26:33
合計ジャッジ時間 11,799 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,752 KB
testcase_01 AC 192 ms
55,452 KB
testcase_02 AC 178 ms
55,076 KB
testcase_03 AC 170 ms
54,888 KB
testcase_04 AC 187 ms
56,276 KB
testcase_05 AC 146 ms
54,848 KB
testcase_06 AC 183 ms
55,152 KB
testcase_07 AC 127 ms
54,600 KB
testcase_08 AC 141 ms
54,884 KB
testcase_09 AC 145 ms
55,052 KB
testcase_10 AC 168 ms
54,632 KB
testcase_11 AC 193 ms
55,124 KB
testcase_12 AC 149 ms
54,656 KB
testcase_13 AC 209 ms
55,136 KB
testcase_14 AC 204 ms
55,032 KB
testcase_15 AC 154 ms
54,840 KB
testcase_16 AC 158 ms
54,800 KB
testcase_17 AC 199 ms
56,528 KB
testcase_18 AC 173 ms
54,844 KB
testcase_19 AC 147 ms
54,956 KB
testcase_20 AC 186 ms
56,208 KB
testcase_21 AC 194 ms
54,796 KB
testcase_22 AC 208 ms
55,176 KB
testcase_23 AC 192 ms
55,476 KB
testcase_24 AC 170 ms
55,056 KB
testcase_25 AC 197 ms
54,712 KB
testcase_26 AC 148 ms
54,600 KB
testcase_27 AC 195 ms
55,284 KB
testcase_28 AC 194 ms
55,252 KB
testcase_29 AC 176 ms
54,728 KB
testcase_30 AC 192 ms
55,192 KB
testcase_31 AC 170 ms
55,224 KB
testcase_32 AC 141 ms
54,916 KB
testcase_33 AC 189 ms
54,676 KB
testcase_34 AC 164 ms
54,688 KB
testcase_35 AC 168 ms
54,952 KB
testcase_36 AC 189 ms
54,940 KB
testcase_37 AC 192 ms
55,172 KB
testcase_38 AC 183 ms
56,228 KB
testcase_39 AC 189 ms
55,372 KB
testcase_40 AC 187 ms
55,416 KB
testcase_41 AC 188 ms
55,152 KB
testcase_42 AC 168 ms
55,024 KB
testcase_43 AC 185 ms
55,356 KB
testcase_44 AC 191 ms
55,412 KB
testcase_45 AC 121 ms
54,648 KB
testcase_46 AC 136 ms
54,708 KB
testcase_47 AC 135 ms
54,656 KB
testcase_48 AC 133 ms
54,424 KB
testcase_49 AC 134 ms
54,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

public class Main implements Runnable {
	public static void main(String[] args) {
		new Main().run();
	}

	long MOD = (long) (1e9 + 7);

	public void run() {
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		int a = val(S.charAt(0));
		int b = val(S.charAt(1));
		int c = val(S.charAt(2));
		int n = (a * 100 + b * 10 + c + 5) / 10;
		a = n / 10;
		b = n % 10;
		int p = S.length() - 1;
		if (a >= 10) {
			++p;
			b = a % 10;
			a = a / 10;
		}
		System.out.println(a + "." + b + "*10^" + p);
	}

	int val(char c) {
		return c - '0';
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0