結果
| 問題 | 
                            No.349 干支の置き物
                             | 
                    
| コンテスト | |
| ユーザー | 
                             kmtrc130
                         | 
                    
| 提出日時 | 2017-05-26 14:07:40 | 
| 言語 | C#(csc)  (csc 3.9.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 640 bytes | 
| コンパイル時間 | 1,102 ms | 
| コンパイル使用メモリ | 113,220 KB | 
| 実行使用メモリ | 28,904 KB | 
| 最終ジャッジ日時 | 2024-09-19 20:06:07 | 
| 合計ジャッジ時間 | 2,493 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 26 WA * 3 | 
コンパイルメッセージ
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.Linq;
class Program
{
    static void Main(string[] args)
    {
        int N = int.Parse(Console.ReadLine());
        Dictionary<string, int> etoList = new Dictionary<string, int>();
        string eto = "";
        for (int i = 0; i < N; i++)
        {
            eto = Console.ReadLine();
            if (!etoList.ContainsKey(eto)) { etoList.Add(eto, 0); }
            etoList[eto] = int.Parse(etoList[eto].ToString()) + 1;
        }
        Console.WriteLine(etoList.OrderBy(x => x.Value).Last().Value <= (double)N / 2 ? "YES" : "NO");
    }
}
            
            
            
        
            
kmtrc130