結果

問題 No.1032 数数え
ユーザー ixTL255ixTL255
提出日時 2020-12-03 23:29:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 652 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 111,220 KB
実行使用メモリ 50,060 KB
最終ジャッジ日時 2024-09-14 08:48:53
合計ジャッジ時間 4,807 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
18,944 KB
testcase_01 AC 31 ms
19,072 KB
testcase_02 AC 31 ms
19,200 KB
testcase_03 AC 34 ms
19,072 KB
testcase_04 AC 32 ms
19,072 KB
testcase_05 AC 30 ms
19,328 KB
testcase_06 AC 33 ms
19,200 KB
testcase_07 AC 652 ms
50,060 KB
testcase_08 AC 31 ms
19,328 KB
testcase_09 AC 62 ms
20,480 KB
testcase_10 AC 36 ms
19,712 KB
testcase_11 AC 31 ms
19,200 KB
testcase_12 AC 610 ms
37,504 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;

public class Yuki1032
{
	public static void Main()
	{
		var nm = Console.ReadLine().Split().Select(x => long.Parse(x)).ToList();
		var l = Console.ReadLine().Split().Select(x => long.Parse(x)).ToList();
		
		var d = new Dictionary<long,long>();
		for(var i = 0; i < nm[0]; ++i)
		{
			var x = l[i];
			if(d.ContainsKey(x)) d[x] += 1;
			else d.Add(x,1);
		}
		
		for(var i = 1; i <= nm[1]; ++i)
		{
			if(d.ContainsKey(i)) Console.WriteLine(string.Format("{0} {1}", i, d[i]));
			else Console.WriteLine(string.Format("{0} {1}", i, 0));
		}
	}
}
0