結果
問題 | No.668 6.0*10^23 |
ユーザー | iwkjosec |
提出日時 | 2018-03-23 22:51:50 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 624 bytes |
コンパイル時間 | 2,118 ms |
コンパイル使用メモリ | 107,784 KB |
実行使用メモリ | 27,968 KB |
最終ジャッジ日時 | 2024-06-30 05:16:54 |
合計ジャッジ時間 | 4,528 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | AC | 20 ms
23,580 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 20 ms
23,764 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 19 ms
23,580 KB |
testcase_14 | AC | 19 ms
21,396 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 19 ms
27,796 KB |
testcase_19 | WA | - |
testcase_20 | AC | 18 ms
21,660 KB |
testcase_21 | WA | - |
testcase_22 | AC | 21 ms
23,464 KB |
testcase_23 | AC | 20 ms
25,376 KB |
testcase_24 | AC | 20 ms
23,784 KB |
testcase_25 | WA | - |
testcase_26 | AC | 19 ms
25,700 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 20 ms
23,700 KB |
testcase_31 | WA | - |
testcase_32 | AC | 20 ms
23,664 KB |
testcase_33 | AC | 21 ms
21,552 KB |
testcase_34 | AC | 21 ms
23,892 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 22 ms
23,832 KB |
testcase_38 | AC | 21 ms
23,688 KB |
testcase_39 | WA | - |
testcase_40 | AC | 21 ms
21,672 KB |
testcase_41 | AC | 20 ms
21,408 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 21 ms
25,880 KB |
testcase_45 | RE | - |
testcase_46 | AC | 20 ms
23,856 KB |
testcase_47 | AC | 21 ms
24,048 KB |
testcase_48 | AC | 20 ms
25,568 KB |
testcase_49 | AC | 21 ms
25,940 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using static System.Console; class Program { static void Main() { var N = ReadLine(); var a = int.Parse(N[0] + ""); var b = int.Parse(N[1] + ""); var c = N.Length - 1; if (N[3] > '4') { b++; if (b == 10) { b = 0; a++; if (a == 10) { a = 1; b = 0; c++; } } } WriteLine($"{a}.{b}*10^{c}"); } }