結果

問題 No.668 6.0*10^23
ユーザー bluemeganebluemegane
提出日時 2018-09-07 18:56:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 774 ms
コンパイル使用メモリ 110,220 KB
実行使用メモリ 27,352 KB
最終ジャッジ日時 2024-07-01 04:18:32
合計ジャッジ時間 3,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,148 KB
testcase_01 AC 28 ms
24,848 KB
testcase_02 AC 28 ms
24,980 KB
testcase_03 AC 27 ms
25,108 KB
testcase_04 AC 27 ms
27,352 KB
testcase_05 AC 27 ms
25,008 KB
testcase_06 AC 27 ms
25,104 KB
testcase_07 AC 27 ms
26,936 KB
testcase_08 AC 27 ms
24,820 KB
testcase_09 AC 27 ms
25,272 KB
testcase_10 AC 27 ms
25,188 KB
testcase_11 AC 27 ms
23,060 KB
testcase_12 AC 27 ms
25,000 KB
testcase_13 AC 28 ms
27,152 KB
testcase_14 AC 28 ms
24,980 KB
testcase_15 AC 27 ms
25,196 KB
testcase_16 AC 27 ms
25,064 KB
testcase_17 AC 28 ms
27,156 KB
testcase_18 AC 27 ms
24,928 KB
testcase_19 AC 26 ms
25,140 KB
testcase_20 AC 28 ms
27,028 KB
testcase_21 AC 27 ms
24,980 KB
testcase_22 AC 28 ms
25,104 KB
testcase_23 AC 28 ms
26,904 KB
testcase_24 AC 27 ms
26,996 KB
testcase_25 AC 28 ms
24,864 KB
testcase_26 AC 27 ms
23,100 KB
testcase_27 AC 27 ms
22,944 KB
testcase_28 AC 28 ms
24,848 KB
testcase_29 AC 27 ms
25,176 KB
testcase_30 AC 28 ms
24,856 KB
testcase_31 AC 27 ms
24,848 KB
testcase_32 AC 26 ms
23,088 KB
testcase_33 AC 27 ms
24,988 KB
testcase_34 AC 27 ms
26,924 KB
testcase_35 AC 27 ms
25,308 KB
testcase_36 AC 27 ms
23,064 KB
testcase_37 AC 28 ms
27,152 KB
testcase_38 AC 27 ms
24,980 KB
testcase_39 AC 28 ms
27,020 KB
testcase_40 AC 27 ms
25,112 KB
testcase_41 AC 27 ms
25,112 KB
testcase_42 AC 28 ms
27,240 KB
testcase_43 AC 28 ms
27,148 KB
testcase_44 AC 27 ms
22,808 KB
testcase_45 AC 27 ms
25,268 KB
testcase_46 AC 27 ms
25,076 KB
testcase_47 AC 27 ms
25,064 KB
testcase_48 AC 27 ms
25,272 KB
testcase_49 AC 27 ms
27,108 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        var s = Console.ReadLine().Trim();
        var a = s.Substring(0, 3);
        var a2 = int.Parse(a) / 10.0;
        var a3 = Math.Round(a2, 0, MidpointRounding.AwayFromZero).ToString();
        var a4 = s.Length - 1;
        if (a3 == "100") { a3 = "10";  a4++; }
        Console.WriteLine("{0}.{1}*10^{2}",a3[0],a3[1],a4);
    }
}
0