結果
| 問題 | No.349 干支の置き物 |
| コンテスト | |
| ユーザー |
tasuku
|
| 提出日時 | 2016-03-12 02:17:57 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 2,000 ms |
| コード長 | 684 bytes |
| 記録 | |
| コンパイル時間 | 3,169 ms |
| コンパイル使用メモリ | 106,880 KB |
| 実行使用メモリ | 19,072 KB |
| 最終ジャッジ日時 | 2024-11-17 07:25:28 |
| 合計ジャッジ時間 | 3,068 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
コンパイルメッセージ
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.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace yukicoder349
{
class Program
{
static void Main(string[] args)
{
int cnt = int.Parse(Console.ReadLine());
string[] s = new string[cnt];
for (int i = 0; i < cnt; i++)
{
s[i] = Console.ReadLine();
}
if (s.GroupBy(c => c).Select(c => c.Count()).Max() <= ((cnt + 1) / 2))
{
Console.WriteLine("YES");
}
else
{
Console.WriteLine("NO");
}
}
}
}
tasuku