結果

問題 No.668 6.0*10^23
ユーザー uafr_csuafr_cs
提出日時 2018-03-23 22:37:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 946 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 81,192 KB
実行使用メモリ 56,992 KB
最終ジャッジ日時 2024-06-30 05:10:15
合計ジャッジ時間 13,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,444 KB
testcase_01 AC 213 ms
55,984 KB
testcase_02 AC 218 ms
54,896 KB
testcase_03 AC 184 ms
54,600 KB
testcase_04 AC 209 ms
56,068 KB
testcase_05 AC 183 ms
54,888 KB
testcase_06 AC 191 ms
55,224 KB
testcase_07 AC 155 ms
54,776 KB
testcase_08 AC 154 ms
54,752 KB
testcase_09 AC 149 ms
54,588 KB
testcase_10 AC 184 ms
54,764 KB
testcase_11 AC 231 ms
55,652 KB
testcase_12 AC 170 ms
54,664 KB
testcase_13 AC 228 ms
55,000 KB
testcase_14 AC 232 ms
56,124 KB
testcase_15 AC 177 ms
54,848 KB
testcase_16 AC 158 ms
54,684 KB
testcase_17 AC 233 ms
56,992 KB
testcase_18 AC 213 ms
55,016 KB
testcase_19 AC 180 ms
54,764 KB
testcase_20 AC 217 ms
56,788 KB
testcase_21 AC 205 ms
54,908 KB
testcase_22 AC 231 ms
55,880 KB
testcase_23 AC 225 ms
55,076 KB
testcase_24 AC 177 ms
54,876 KB
testcase_25 AC 235 ms
55,956 KB
testcase_26 AC 168 ms
54,976 KB
testcase_27 AC 214 ms
56,204 KB
testcase_28 AC 222 ms
55,652 KB
testcase_29 AC 189 ms
55,108 KB
testcase_30 AC 234 ms
56,164 KB
testcase_31 AC 198 ms
55,340 KB
testcase_32 AC 173 ms
54,972 KB
testcase_33 AC 222 ms
55,532 KB
testcase_34 AC 178 ms
54,904 KB
testcase_35 AC 176 ms
54,828 KB
testcase_36 AC 228 ms
56,988 KB
testcase_37 AC 228 ms
55,800 KB
testcase_38 AC 212 ms
55,052 KB
testcase_39 AC 215 ms
56,396 KB
testcase_40 AC 227 ms
55,716 KB
testcase_41 AC 235 ms
56,092 KB
testcase_42 AC 206 ms
56,052 KB
testcase_43 AC 228 ms
55,920 KB
testcase_44 AC 238 ms
55,816 KB
testcase_45 AC 154 ms
54,824 KB
testcase_46 AC 152 ms
54,896 KB
testcase_47 AC 153 ms
54,860 KB
testcase_48 AC 154 ms
54,840 KB
testcase_49 AC 155 ms
54,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static final long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final char[] chs = sc.next().toCharArray();
		
		int begin = 0;
		//while(chs[begin] == 0){ begin++; }
		
		int size = 0;
		int[] ans = new int[3];
		ans[0] = Character.getNumericValue(chs[begin + 0]);
		ans[1] = Character.getNumericValue(chs[begin + 1]);
		ans[2] = Character.getNumericValue(chs[begin + 2]);
		
		if(ans[2] >= 5){
			ans[begin + 2] = 0;
			ans[begin + 1] += 1;
		}
		if(ans[1] >= 10){
			ans[begin + 1] %= 10;
			ans[begin + 0] += 1;
		}
		if(ans[0] >= 10){
			ans[begin + 1] = ans[begin] % 10;
			ans[begin + 0] /= 10;
			size++;
		}
		
		size += (chs.length - (begin + 1));
		
		//System.out.println(Arrays.toString(ans));
		System.out.println(ans[0] + "." + ans[1] + "*10^" + size);
		
	}
}
0