結果

問題 No.313 π
ユーザー mbanmban
提出日時 2016-11-01 05:46:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 864 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 114,148 KB
実行使用メモリ 28,388 KB
最終ジャッジ日時 2024-05-03 20:34:54
合計ジャッジ時間 4,554 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
26,088 KB
testcase_01 AC 58 ms
26,472 KB
testcase_02 AC 57 ms
28,224 KB
testcase_03 AC 57 ms
26,592 KB
testcase_04 AC 57 ms
26,304 KB
testcase_05 AC 59 ms
28,208 KB
testcase_06 AC 57 ms
26,304 KB
testcase_07 AC 57 ms
26,304 KB
testcase_08 AC 57 ms
26,176 KB
testcase_09 AC 57 ms
28,100 KB
testcase_10 AC 58 ms
26,436 KB
testcase_11 AC 58 ms
26,172 KB
testcase_12 AC 57 ms
26,180 KB
testcase_13 AC 56 ms
24,256 KB
testcase_14 AC 58 ms
26,180 KB
testcase_15 AC 57 ms
26,172 KB
testcase_16 AC 58 ms
26,044 KB
testcase_17 AC 58 ms
28,216 KB
testcase_18 AC 57 ms
28,224 KB
testcase_19 AC 57 ms
28,388 KB
testcase_20 AC 56 ms
26,348 KB
testcase_21 AC 57 ms
28,344 KB
testcase_22 AC 58 ms
28,348 KB
testcase_23 AC 58 ms
28,232 KB
testcase_24 AC 58 ms
28,224 KB
testcase_25 AC 58 ms
26,304 KB
testcase_26 AC 58 ms
28,352 KB
testcase_27 AC 57 ms
26,216 KB
testcase_28 AC 58 ms
26,560 KB
testcase_29 AC 58 ms
26,088 KB
testcase_30 AC 59 ms
28,340 KB
testcase_31 AC 57 ms
26,300 KB
testcase_32 AC 56 ms
24,124 KB
testcase_33 AC 57 ms
26,048 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.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Magatro
{
   static int[] cnt = new int[10];
   static void Main()
    {
        string s = Console.ReadLine();
        Counter(s);
        int n=0, m=0;
        int[] ans = { 20104, 20063, 19892, 20011, 19874, 20199, 19898, 20163, 19956, 19841 };
        for(int i = 0; i < 10; i++)
        {
            if (cnt[i] < ans[i])
            {
                n = i;
            }
            if (ans[i] < cnt[i])
            {
                m = i;
            }
        }
        Console.WriteLine("{0} {1}", m, n);
    }
    static void Counter(string s)
    {
        for(int i = 0; i < 10; i++)
        {
            string q = s;
            s = s.Replace(i.ToString(), "");
            cnt[i] = q.Length - s.Length;
        }
    }
}


0