結果

問題 No.313 π
ユーザー tabataba
提出日時 2024-08-30 10:31:18
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 1,538 bytes
コンパイル時間 9,243 ms
コンパイル使用メモリ 170,084 KB
実行使用メモリ 186,272 KB
最終ジャッジ日時 2024-08-30 10:31:38
合計ジャッジ時間 13,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
28,792 KB
testcase_01 AC 58 ms
28,928 KB
testcase_02 AC 58 ms
28,928 KB
testcase_03 AC 54 ms
28,928 KB
testcase_04 AC 97 ms
28,792 KB
testcase_05 AC 58 ms
28,796 KB
testcase_06 AC 57 ms
28,928 KB
testcase_07 AC 54 ms
28,672 KB
testcase_08 AC 56 ms
28,928 KB
testcase_09 AC 55 ms
28,800 KB
testcase_10 AC 55 ms
28,928 KB
testcase_11 AC 67 ms
28,928 KB
testcase_12 AC 58 ms
28,628 KB
testcase_13 AC 55 ms
28,924 KB
testcase_14 AC 54 ms
28,928 KB
testcase_15 AC 54 ms
28,928 KB
testcase_16 AC 59 ms
28,544 KB
testcase_17 AC 55 ms
28,784 KB
testcase_18 AC 56 ms
28,928 KB
testcase_19 AC 57 ms
28,800 KB
testcase_20 AC 55 ms
28,656 KB
testcase_21 AC 54 ms
28,672 KB
testcase_22 AC 55 ms
28,796 KB
testcase_23 AC 55 ms
29,048 KB
testcase_24 AC 55 ms
29,036 KB
testcase_25 AC 54 ms
28,672 KB
testcase_26 AC 53 ms
29,052 KB
testcase_27 AC 84 ms
29,044 KB
testcase_28 AC 53 ms
28,928 KB
testcase_29 AC 54 ms
28,672 KB
testcase_30 AC 54 ms
28,672 KB
testcase_31 AC 53 ms
28,928 KB
testcase_32 AC 53 ms
28,656 KB
testcase_33 AC 55 ms
186,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (112 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Numerics;
public class Program
{
    static void Main()
    {
        var s = Console.ReadLine() ?? "";
        int[] target = [20104,
            20063,
            19892,
            20011,
            19874,
            20199,
            19898,
            20163,
            19956,
            19841];
        int[] tbl = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
        foreach (var c in s)
        {
            switch (c)
            {
                case '0':
                case '1':
                case '2':
                case '3':
                case '4':
                case '5':
                case '6':
                case '7':
                case '8':
                case '9':
                    int i = c - '0';
                    tbl[i]++;
                    break;
                case '.':
                    break;
                default:
                    return;
            }
        }
        for (int i = 0; i < 10; i++)
        {
            if (tbl[i] > target[i])
            {
                Console.Write(i + " ");
            }
        }
        for (int i = 0; i < 10; i++)
        {
            if (tbl[i] < target[i])
            {
                Console.WriteLine(i);
            }
        }
    }

    static string[] ReadLineSplit()
    {
        var s = Console.ReadLine() ?? "";
        return s.Split(' ');
    }
    static long[] ReadLineLong()
    {
        var s = Console.ReadLine() ?? "";
        return s.Split(' ').Select(long.Parse).ToArray();
    }
}
0