結果
| 問題 |
No.349 干支の置き物
|
| コンテスト | |
| ユーザー |
kmtrc130
|
| 提出日時 | 2017-05-26 14:05:19 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 725 bytes |
| コンパイル時間 | 790 ms |
| コンパイル使用メモリ | 111,608 KB |
| 実行使用メモリ | 27,424 KB |
| 最終ジャッジ日時 | 2024-09-19 20:06:04 |
| 合計ジャッジ時間 | 2,692 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 WA * 7 |
コンパイルメッセージ
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;
}
List<KeyValuePair<string, int>> list = new List<KeyValuePair<string, int>>(etoList);
Console.WriteLine(etoList.OrderBy(x => x.Value).Last().Value < N / 2 ? "YES" : "NO");
}
}
kmtrc130