結果

問題 No.3020 サンシャイン◯崎
ユーザー mbanmban
提出日時 2017-04-21 04:37:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 606 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 111,588 KB
実行使用メモリ 27,336 KB
最終ジャッジ日時 2024-06-06 03:02:19
合計ジャッジ時間 2,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
22,964 KB
testcase_01 AC 33 ms
25,156 KB
testcase_02 AC 32 ms
27,136 KB
testcase_03 AC 32 ms
25,088 KB
testcase_04 AC 32 ms
25,024 KB
testcase_05 AC 37 ms
24,908 KB
testcase_06 AC 32 ms
25,080 KB
testcase_07 AC 32 ms
24,876 KB
testcase_08 AC 35 ms
27,148 KB
testcase_09 AC 34 ms
25,352 KB
testcase_10 AC 37 ms
24,904 KB
testcase_11 AC 36 ms
25,040 KB
testcase_12 AC 37 ms
27,336 KB
testcase_13 AC 37 ms
24,916 KB
testcase_14 AC 36 ms
25,060 KB
testcase_15 AC 37 ms
25,040 KB
testcase_16 AC 35 ms
25,288 KB
testcase_17 AC 36 ms
25,292 KB
testcase_18 AC 37 ms
26,952 KB
testcase_19 AC 37 ms
26,772 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        var s = Console.ReadLine();
        string YEAH = "YEAH!";
        var map = new Dictionary<char, int>();
        foreach(var c in YEAH)
        {
            map[c] = 0;
        }

        foreach (var c in s)
        {
            map[c]++;
        }

        Console.WriteLine(string.Join(" ", map.Select(p => p.Value)));
    }
}

0