結果

問題 No.1032 数数え
ユーザー curryudon08curryudon08
提出日時 2020-07-03 16:54:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 653 ms / 2,000 ms
コード長 939 bytes
コンパイル時間 945 ms
コンパイル使用メモリ 112,848 KB
実行使用メモリ 59,068 KB
最終ジャッジ日時 2024-09-16 17:16:25
合計ジャッジ時間 3,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,360 KB
testcase_01 AC 33 ms
27,500 KB
testcase_02 AC 32 ms
25,236 KB
testcase_03 AC 31 ms
27,388 KB
testcase_04 AC 32 ms
25,468 KB
testcase_05 AC 31 ms
27,404 KB
testcase_06 AC 32 ms
27,388 KB
testcase_07 AC 653 ms
59,068 KB
testcase_08 AC 32 ms
25,344 KB
testcase_09 AC 63 ms
27,888 KB
testcase_10 AC 36 ms
27,916 KB
testcase_11 AC 31 ms
27,652 KB
testcase_12 AC 622 ms
43,492 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.Linq;
using System.Collections.Generic;

namespace _1032
{
    class Program
    {
        static void Main(string[] args)
        {
            var _ = Console.ReadLine().Split();
            var n = long.Parse(_[0]);
            var m = long.Parse(_[1]);
            var s = Console.ReadLine().Split().Select(x => long.Parse(x)).ToArray();

            var d = new Dictionary<long,long>();
            for(var i = 0; i < n; i++){
                var t = s[i];
                if(d.ContainsKey(t)){
                    d[t] += 1;
                }else{
                    d.Add(t,1);
                }
            }

            for(var i = 1; i <= m; i++){
                if(d.ContainsKey(i)){
                    Console.WriteLine(string.Format("{0} {1}",i,d[i]));
                }else{
                    Console.WriteLine(string.Format("{0} {1}",i,0));
                }
            }
        }
    }
}
0