結果
問題 | No.668 6.0*10^23 |
ユーザー | sekiya9311 |
提出日時 | 2018-03-23 23:19:57 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,576 bytes |
コンパイル時間 | 2,217 ms |
コンパイル使用メモリ | 79,008 KB |
実行使用メモリ | 57,256 KB |
最終ジャッジ日時 | 2024-06-30 05:27:27 |
合計ジャッジ時間 | 14,164 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 252 ms
55,116 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 165 ms
54,776 KB |
testcase_10 | WA | - |
testcase_11 | AC | 232 ms
55,320 KB |
testcase_12 | AC | 189 ms
54,972 KB |
testcase_13 | WA | - |
testcase_14 | AC | 248 ms
55,864 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 246 ms
55,820 KB |
testcase_18 | WA | - |
testcase_19 | AC | 188 ms
54,796 KB |
testcase_20 | AC | 219 ms
55,728 KB |
testcase_21 | AC | 211 ms
54,896 KB |
testcase_22 | WA | - |
testcase_23 | AC | 220 ms
54,844 KB |
testcase_24 | WA | - |
testcase_25 | AC | 244 ms
56,372 KB |
testcase_26 | AC | 184 ms
54,744 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 200 ms
54,924 KB |
testcase_30 | AC | 250 ms
56,116 KB |
testcase_31 | AC | 220 ms
55,064 KB |
testcase_32 | AC | 181 ms
55,148 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 240 ms
56,236 KB |
testcase_38 | WA | - |
testcase_39 | AC | 224 ms
55,080 KB |
testcase_40 | AC | 248 ms
55,984 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 258 ms
56,172 KB |
testcase_45 | AC | 167 ms
55,064 KB |
testcase_46 | AC | 168 ms
54,684 KB |
testcase_47 | AC | 162 ms
54,964 KB |
testcase_48 | AC | 166 ms
54,828 KB |
testcase_49 | AC | 165 ms
54,832 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); No668 solver = new No668(); solver.solve(1, in, out); out.close(); } static class No668 { public void solve(int testNumber, Scanner in, PrintWriter out) { char[] N = in.next().toCharArray(); int c = 0; for (int i = N.length - 1; i > 0; i--) { if (N[i] - '0' >= 5 && i > 1) N[i]++; N[i] += c; if (N[i] - '0' >= 10) { c = 1; N[i] = (char) ((N[i] - '0') % 10 + '0'); } else { c = 0; } } int L = N.length - 1; if (N[1] - '0' >= 10) { N[1] = (char) ((N[1] - '0') % 10 + '0'); N[0]++; //L++; } N[0] += c; if (N[0] - '0' >= 10) { N[1] = (char) ('0' + (N[0] - '0') % 10); N[0] = (char) ('0' + (N[0] - '0') / 10); L++; } out.println((N[0] - '0') + "." + (N[1] - '0') + "*10^" + L); } } }