結果

問題 No.349 干支の置き物
ユーザー TaK7907TaK7907
提出日時 2017-10-29 11:14:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 110,040 KB
実行使用メモリ 26,404 KB
最終ジャッジ日時 2024-05-01 22:03:41
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,288 KB
testcase_01 AC 23 ms
24,364 KB
testcase_02 AC 24 ms
26,404 KB
testcase_03 AC 24 ms
26,320 KB
testcase_04 AC 24 ms
24,504 KB
testcase_05 AC 25 ms
26,068 KB
testcase_06 AC 24 ms
24,276 KB
testcase_07 AC 24 ms
24,028 KB
testcase_08 AC 26 ms
26,348 KB
testcase_09 AC 24 ms
24,496 KB
testcase_10 AC 23 ms
24,028 KB
testcase_11 AC 23 ms
24,028 KB
testcase_12 AC 25 ms
26,320 KB
testcase_13 AC 26 ms
24,360 KB
testcase_14 AC 25 ms
24,368 KB
testcase_15 AC 23 ms
24,156 KB
testcase_16 AC 23 ms
26,280 KB
testcase_17 AC 24 ms
24,280 KB
testcase_18 AC 23 ms
24,104 KB
testcase_19 AC 23 ms
26,280 KB
testcase_20 AC 23 ms
24,240 KB
testcase_21 AC 24 ms
24,228 KB
testcase_22 AC 24 ms
24,284 KB
testcase_23 AC 24 ms
26,140 KB
testcase_24 AC 23 ms
24,028 KB
testcase_25 AC 23 ms
24,236 KB
testcase_26 AC 24 ms
24,228 KB
testcase_27 AC 24 ms
26,192 KB
testcase_28 AC 24 ms
26,160 KB
testcase_29 AC 24 ms
24,352 KB
testcase_30 AC 24 ms
24,156 KB
testcase_31 AC 24 ms
24,356 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.Generic;
using System.Linq;

namespace yukicodeX {
    public class ProgramX {
        public static string Solver(System.IO.TextReader reader) {
            var n = int.Parse( reader.ReadLine() );
            var x = 0;
            var figures = new Dictionary<string, int>();
            for (var i = 0; i != n; ++i) {
                var buf = reader.ReadLine().Split();
                if (figures.ContainsKey( buf[ 0 ] )) figures[ buf[ 0 ] ] += 1;
                else figures.Add( buf[ 0 ], 1 );
                if (figures[ buf[ 0 ] ] > x) ++x;
            }
            return n % 2 == 0 ? x > n / 2 ? "NO" : "YES" : x > n / 2 + 1 ? "NO" : "YES";
        }

        private static void Main() {
            Console.WriteLine( Solver( Console.In ) );
        }
    }
}
0