結果

問題 No.668 6.0*10^23
ユーザー YamaKasaYamaKasa
提出日時 2018-10-01 14:06:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 79,892 KB
実行使用メモリ 56,628 KB
最終ジャッジ日時 2024-07-01 04:43:57
合計ジャッジ時間 14,424 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
54,592 KB
testcase_01 AC 236 ms
55,952 KB
testcase_02 AC 228 ms
56,208 KB
testcase_03 AC 218 ms
55,244 KB
testcase_04 AC 225 ms
55,380 KB
testcase_05 AC 186 ms
54,796 KB
testcase_06 AC 231 ms
55,276 KB
testcase_07 AC 168 ms
54,956 KB
testcase_08 AC 166 ms
54,744 KB
testcase_09 AC 164 ms
54,772 KB
testcase_10 AC 176 ms
54,112 KB
testcase_11 AC 236 ms
55,048 KB
testcase_12 AC 192 ms
54,820 KB
testcase_13 AC 216 ms
54,704 KB
testcase_14 AC 245 ms
55,520 KB
testcase_15 AC 179 ms
54,384 KB
testcase_16 AC 175 ms
53,852 KB
testcase_17 AC 227 ms
54,832 KB
testcase_18 AC 208 ms
54,792 KB
testcase_19 AC 176 ms
54,324 KB
testcase_20 AC 222 ms
54,996 KB
testcase_21 AC 238 ms
56,264 KB
testcase_22 AC 243 ms
55,428 KB
testcase_23 AC 216 ms
55,104 KB
testcase_24 AC 187 ms
54,884 KB
testcase_25 AC 250 ms
55,784 KB
testcase_26 AC 179 ms
54,912 KB
testcase_27 AC 224 ms
55,052 KB
testcase_28 AC 252 ms
56,144 KB
testcase_29 AC 233 ms
56,628 KB
testcase_30 AC 247 ms
55,496 KB
testcase_31 AC 224 ms
54,800 KB
testcase_32 AC 187 ms
55,048 KB
testcase_33 AC 236 ms
56,044 KB
testcase_34 AC 194 ms
54,956 KB
testcase_35 AC 191 ms
55,100 KB
testcase_36 AC 218 ms
55,088 KB
testcase_37 AC 239 ms
55,060 KB
testcase_38 AC 223 ms
56,240 KB
testcase_39 AC 219 ms
55,008 KB
testcase_40 AC 249 ms
55,140 KB
testcase_41 AC 240 ms
55,528 KB
testcase_42 AC 222 ms
55,476 KB
testcase_43 AC 235 ms
55,248 KB
testcase_44 AC 227 ms
54,656 KB
testcase_45 AC 171 ms
54,976 KB
testcase_46 AC 172 ms
54,936 KB
testcase_47 AC 171 ms
54,740 KB
testcase_48 AC 177 ms
55,060 KB
testcase_49 AC 158 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String N = scan.next();
		scan.close();
		int c = N.length() - 1;
		if(N.charAt(0) == '9' && N.charAt(1) == '9' && N.charAt(2) >= '5') {
			c += 1;
			System.out.println("1.0*10^" + c);
			System.exit(0);
		}
		if(N.charAt(1) == '9' && N.charAt(2) >= '5') {
			int a = Integer.parseInt(N.substring(0, 1)) + 1;
			int b = 0;
			System.out.println(a + "." + b + "*10^" + c);
			System.exit(0);
		}
		if(N.charAt(2) >= '5') {
			int a = Integer.parseInt(N.substring(0, 1));
			int b = 0;
			if(N.charAt(1) != '9') {
				b = Integer.parseInt(N.substring(1, 2)) + 1;
			}
			System.out.println(a + "." + b + "*10^" + c);
		}else {
			int a = Integer.parseInt(N.substring(0, 1));
			int b = Integer.parseInt(N.substring(1, 2));
			System.out.println(a + "." + b + "*10^" + c);
		}
	}
}
0