結果

問題 No.587 七対子
ユーザー バカらっくバカらっく
提出日時 2017-11-03 22:30:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 1,410 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 106,060 KB
実行使用メモリ 23,668 KB
最終ジャッジ日時 2023-09-27 02:09:35
合計ジャッジ時間 5,699 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
21,324 KB
testcase_01 AC 58 ms
21,572 KB
testcase_02 AC 58 ms
21,616 KB
testcase_03 AC 58 ms
21,548 KB
testcase_04 AC 58 ms
21,596 KB
testcase_05 AC 55 ms
21,368 KB
testcase_06 AC 56 ms
21,480 KB
testcase_07 AC 57 ms
21,420 KB
testcase_08 AC 55 ms
21,420 KB
testcase_09 AC 55 ms
21,416 KB
testcase_10 AC 58 ms
21,576 KB
testcase_11 AC 55 ms
23,416 KB
testcase_12 AC 57 ms
19,532 KB
testcase_13 AC 59 ms
19,440 KB
testcase_14 AC 58 ms
23,420 KB
testcase_15 AC 55 ms
19,324 KB
testcase_16 AC 57 ms
21,320 KB
testcase_17 AC 56 ms
21,324 KB
testcase_18 AC 56 ms
21,328 KB
testcase_19 AC 54 ms
21,388 KB
testcase_20 AC 54 ms
21,400 KB
testcase_21 AC 56 ms
21,240 KB
testcase_22 AC 55 ms
19,316 KB
testcase_23 AC 55 ms
21,316 KB
testcase_24 AC 55 ms
21,472 KB
testcase_25 AC 56 ms
23,420 KB
testcase_26 AC 55 ms
21,392 KB
testcase_27 AC 56 ms
23,668 KB
testcase_28 AC 56 ms
23,416 KB
testcase_29 AC 55 ms
19,188 KB
testcase_30 AC 56 ms
21,616 KB
testcase_31 AC 57 ms
21,308 KB
testcase_32 AC 59 ms
23,480 KB
testcase_33 AC 55 ms
21,304 KB
testcase_34 AC 59 ms
21,448 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.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text;

public class Program
{

    public void Proc()
    {
        string inpt = Reader.ReadLine();
        Dictionary<char, int> cnt = new Dictionary<char, int>();
        inpt.ToList().ForEach(a=>{
            if(cnt.ContainsKey(a)) {
                cnt[a]++;
            } else {
                cnt[a] = 1;
            }
        });

        if(cnt.Count == 7 && cnt.Count(a=>a.Value == 2) == 6 && cnt.Count(a=>a.Value == 1) == 1) {
            Console.WriteLine(cnt.Where(a => a.Value == 1).First().Key);
        } else {
            Console.WriteLine("Impossible");
        }
    }





    public class Reader
    {
        private static StringReader sr;
        public static bool IsDebug = false;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (sr == null)
                {
                    sr = new StringReader(InputText.Trim());
                }
                return sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        private static string InputText = @"


hsgeeappashoo



";
    }

    public static void Main(string[] args)
    {
#if DEBUG
        Reader.IsDebug = true;
#endif
        Program prg = new Program();
        prg.Proc();
    }
}
0