結果

問題 No.587 七対子
ユーザー RisenRisen
提出日時 2017-11-03 22:30:14
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 108,424 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2023-09-27 02:09:29
合計ジャッジ時間 5,448 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
21,380 KB
testcase_01 AC 55 ms
21,500 KB
testcase_02 AC 54 ms
23,304 KB
testcase_03 AC 55 ms
21,272 KB
testcase_04 AC 56 ms
21,360 KB
testcase_05 AC 55 ms
23,324 KB
testcase_06 AC 54 ms
21,188 KB
testcase_07 AC 54 ms
21,328 KB
testcase_08 AC 55 ms
23,276 KB
testcase_09 AC 55 ms
23,384 KB
testcase_10 AC 55 ms
21,220 KB
testcase_11 AC 54 ms
21,276 KB
testcase_12 AC 56 ms
23,420 KB
testcase_13 AC 55 ms
21,156 KB
testcase_14 AC 56 ms
21,436 KB
testcase_15 AC 54 ms
21,192 KB
testcase_16 AC 55 ms
23,424 KB
testcase_17 AC 54 ms
21,116 KB
testcase_18 AC 54 ms
21,192 KB
testcase_19 AC 54 ms
21,372 KB
testcase_20 AC 53 ms
21,328 KB
testcase_21 AC 53 ms
21,368 KB
testcase_22 AC 54 ms
21,192 KB
testcase_23 AC 53 ms
21,200 KB
testcase_24 AC 54 ms
21,312 KB
testcase_25 AC 54 ms
21,112 KB
testcase_26 AC 54 ms
19,312 KB
testcase_27 AC 54 ms
21,404 KB
testcase_28 AC 54 ms
21,308 KB
testcase_29 AC 54 ms
21,368 KB
testcase_30 AC 54 ms
21,292 KB
testcase_31 AC 54 ms
21,364 KB
testcase_32 AC 55 ms
21,372 KB
testcase_33 AC 54 ms
21,276 KB
testcase_34 AC 56 ms
23,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;

class Solution
{
    static void Main()
    {
        var s = Console.ReadLine();
        var alpha = new Dictionary<char, int>();

        foreach (var c in s)
        {
            if (!alpha.ContainsKey(c))
            {
                alpha[c] = 0;
            }
            alpha[c]++;
        }

        if (alpha.Count(a => a.Value == 2) == 6)
        {
            var orphan = alpha.First(a => a.Value == 1).Key;
            Console.WriteLine(orphan);
        }
        else
        {
            Console.WriteLine("Impossible");
        }

    }
}
0