結果

問題 No.668 6.0*10^23
ユーザー Mcpu3Mcpu3
提出日時 2018-10-18 19:36:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 76,868 KB
実行使用メモリ 58,228 KB
最終ジャッジ日時 2024-07-01 04:55:07
合計ジャッジ時間 14,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
54,728 KB
testcase_01 AC 237 ms
56,816 KB
testcase_02 AC 220 ms
54,952 KB
testcase_03 AC 216 ms
55,016 KB
testcase_04 AC 203 ms
54,752 KB
testcase_05 AC 188 ms
54,840 KB
testcase_06 AC 216 ms
55,412 KB
testcase_07 AC 167 ms
54,888 KB
testcase_08 AC 166 ms
54,692 KB
testcase_09 AC 169 ms
54,816 KB
testcase_10 AC 191 ms
54,712 KB
testcase_11 AC 250 ms
57,720 KB
testcase_12 AC 193 ms
54,864 KB
testcase_13 AC 256 ms
57,948 KB
testcase_14 AC 241 ms
57,708 KB
testcase_15 AC 187 ms
54,868 KB
testcase_16 AC 189 ms
54,944 KB
testcase_17 AC 245 ms
57,944 KB
testcase_18 AC 216 ms
54,652 KB
testcase_19 AC 193 ms
54,580 KB
testcase_20 AC 214 ms
54,740 KB
testcase_21 AC 216 ms
54,748 KB
testcase_22 AC 246 ms
58,168 KB
testcase_23 AC 221 ms
54,796 KB
testcase_24 AC 184 ms
54,936 KB
testcase_25 AC 247 ms
57,792 KB
testcase_26 AC 179 ms
55,048 KB
testcase_27 AC 228 ms
55,200 KB
testcase_28 AC 233 ms
57,848 KB
testcase_29 AC 222 ms
56,204 KB
testcase_30 AC 246 ms
57,684 KB
testcase_31 AC 218 ms
54,936 KB
testcase_32 AC 187 ms
54,952 KB
testcase_33 AC 246 ms
58,192 KB
testcase_34 AC 192 ms
54,556 KB
testcase_35 AC 187 ms
54,788 KB
testcase_36 AC 229 ms
57,352 KB
testcase_37 AC 252 ms
57,780 KB
testcase_38 AC 223 ms
55,132 KB
testcase_39 AC 215 ms
54,884 KB
testcase_40 AC 240 ms
58,228 KB
testcase_41 AC 240 ms
57,652 KB
testcase_42 AC 220 ms
55,156 KB
testcase_43 AC 234 ms
58,136 KB
testcase_44 AC 251 ms
58,044 KB
testcase_45 AC 169 ms
54,868 KB
testcase_46 AC 170 ms
54,624 KB
testcase_47 AC 169 ms
54,524 KB
testcase_48 AC 166 ms
54,800 KB
testcase_49 AC 165 ms
54,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char N[] = new char[100002];
		N = sc.next().toCharArray();
		sc.close();
		int length = N.length;
		if (N[2] >= '5') {
			if (N[1] == '9') {
				N[1] = '0';
				if (N[0] == '9') {
					N[0] = '1';
					++length;
				}
				else ++N[0];
			}
			else ++N[1];
		}
		System.out.print(N[0] + "." + N[1] + "*10^" + (length - 1));
	}
}
0