結果

問題 No.1032 数数え
ユーザー keymoon
提出日時 2021-01-15 01:39:19
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 668 bytes
コンパイル時間 1,103 ms
コンパイル使用メモリ 112,720 KB
実行使用メモリ 50,076 KB
最終ジャッジ日時 2024-11-24 22:02:53
合計ジャッジ時間 3,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other WA * 5 RE * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
public static class P
{
    public static void Main()
    {
        var nm = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var n = nm[0];
        var m = nm[1];
        int[] cnts = new int[m];
        foreach (var item in Console.ReadLine().Split().Select(int.Parse)) cnts[item - 1]++;
        Console.WriteLine(string.Join(" ", cnts.Select((x, y) => $"{y + 1} {x}")));
    }
}
0