結果

問題 No.668 6.0*10^23
ユーザー NoNo
提出日時 2018-03-25 12:40:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 109,208 KB
実行使用メモリ 31,296 KB
最終ジャッジ日時 2024-06-30 05:37:22
合計ジャッジ時間 5,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
29,240 KB
testcase_01 AC 62 ms
29,388 KB
testcase_02 AC 57 ms
28,996 KB
testcase_03 AC 58 ms
29,152 KB
testcase_04 AC 59 ms
31,032 KB
testcase_05 AC 59 ms
29,408 KB
testcase_06 AC 59 ms
29,108 KB
testcase_07 AC 60 ms
29,152 KB
testcase_08 AC 59 ms
29,360 KB
testcase_09 AC 60 ms
29,100 KB
testcase_10 AC 63 ms
29,356 KB
testcase_11 AC 62 ms
29,256 KB
testcase_12 AC 63 ms
27,052 KB
testcase_13 AC 64 ms
31,296 KB
testcase_14 AC 63 ms
29,132 KB
testcase_15 AC 62 ms
29,104 KB
testcase_16 AC 63 ms
29,492 KB
testcase_17 AC 64 ms
29,020 KB
testcase_18 AC 64 ms
31,192 KB
testcase_19 AC 63 ms
31,212 KB
testcase_20 AC 61 ms
29,500 KB
testcase_21 AC 61 ms
31,164 KB
testcase_22 AC 60 ms
26,800 KB
testcase_23 AC 62 ms
29,388 KB
testcase_24 AC 61 ms
29,232 KB
testcase_25 AC 58 ms
29,132 KB
testcase_26 AC 60 ms
28,980 KB
testcase_27 AC 60 ms
27,072 KB
testcase_28 AC 63 ms
30,896 KB
testcase_29 AC 61 ms
31,284 KB
testcase_30 AC 60 ms
29,372 KB
testcase_31 AC 61 ms
29,116 KB
testcase_32 AC 59 ms
29,024 KB
testcase_33 AC 61 ms
26,936 KB
testcase_34 AC 60 ms
26,932 KB
testcase_35 AC 60 ms
29,020 KB
testcase_36 AC 59 ms
29,116 KB
testcase_37 AC 61 ms
27,452 KB
testcase_38 AC 59 ms
28,972 KB
testcase_39 AC 59 ms
28,988 KB
testcase_40 AC 59 ms
28,988 KB
testcase_41 AC 61 ms
31,292 KB
testcase_42 AC 61 ms
29,128 KB
testcase_43 AC 60 ms
29,376 KB
testcase_44 AC 63 ms
29,388 KB
testcase_45 AC 60 ms
29,152 KB
testcase_46 AC 59 ms
29,100 KB
testcase_47 AC 60 ms
31,128 KB
testcase_48 AC 61 ms
29,356 KB
testcase_49 AC 60 ms
29,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Text.RegularExpressions;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            string n = Console.ReadLine();
            string f = n.Substring(0, 3);

            Double a = 0;
            if (Regex.IsMatch(f, "99[5-9]"))
            {
                a = 1.0;
                Console.WriteLine(a.ToString("0.0") + "*10^" + (n.Length).ToString());
            }
            else
            {
                a = Math.Round(double.Parse(f) / 10, MidpointRounding.AwayFromZero) / 10d;
                Console.WriteLine(a.ToString("0.0") + "*10^" + (n.Length - 1).ToString());
            }
        }
    }
}
0