結果
問題 |
No.8020 サンシャイン◯崎
|
ユーザー |
![]() |
提出日時 | 2017-04-21 04:37:16 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 37 ms / 1,000 ms |
コード長 | 606 bytes |
コンパイル時間 | 2,507 ms |
コンパイル使用メモリ | 111,984 KB |
実行使用メモリ | 27,268 KB |
最終ジャッジ日時 | 2024-12-23 14:05:27 |
合計ジャッジ時間 | 2,639 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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))); } }