結果

問題 No.2715 Unique Chimatagram
ユーザー bluemeganebluemegane
提出日時 2024-04-06 09:49:39
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 12,437 ms
コンパイル使用メモリ 166,192 KB
実行使用メモリ 190,556 KB
最終ジャッジ日時 2024-10-01 03:47:06
合計ジャッジ時間 12,353 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
29,056 KB
testcase_01 AC 53 ms
29,440 KB
testcase_02 AC 54 ms
29,184 KB
testcase_03 AC 53 ms
29,184 KB
testcase_04 AC 54 ms
28,928 KB
testcase_05 AC 53 ms
29,440 KB
testcase_06 AC 53 ms
29,172 KB
testcase_07 AC 53 ms
29,172 KB
testcase_08 AC 68 ms
36,096 KB
testcase_09 AC 70 ms
36,480 KB
testcase_10 AC 69 ms
36,340 KB
testcase_11 AC 70 ms
36,864 KB
testcase_12 AC 69 ms
36,224 KB
testcase_13 AC 69 ms
36,480 KB
testcase_14 AC 69 ms
36,224 KB
testcase_15 AC 69 ms
36,480 KB
testcase_16 AC 68 ms
36,084 KB
testcase_17 AC 69 ms
36,480 KB
testcase_18 AC 72 ms
37,632 KB
testcase_19 AC 71 ms
37,504 KB
testcase_20 AC 70 ms
37,632 KB
testcase_21 AC 70 ms
37,376 KB
testcase_22 AC 71 ms
37,120 KB
testcase_23 AC 71 ms
37,632 KB
testcase_24 AC 70 ms
37,248 KB
testcase_25 AC 71 ms
37,504 KB
testcase_26 AC 69 ms
37,504 KB
testcase_27 AC 68 ms
37,632 KB
testcase_28 AC 68 ms
35,196 KB
testcase_29 AC 69 ms
35,072 KB
testcase_30 AC 68 ms
34,940 KB
testcase_31 AC 67 ms
35,072 KB
testcase_32 AC 66 ms
35,072 KB
testcase_33 AC 53 ms
29,440 KB
testcase_34 AC 54 ms
29,436 KB
testcase_35 AC 53 ms
29,440 KB
testcase_36 AC 53 ms
29,312 KB
testcase_37 AC 52 ms
29,184 KB
testcase_38 AC 53 ms
29,312 KB
testcase_39 AC 65 ms
33,536 KB
testcase_40 AC 63 ms
33,404 KB
testcase_41 AC 68 ms
35,712 KB
testcase_42 AC 67 ms
190,556 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (102 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System.Collections.Generic;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        getAns(n);
    }
    static string getT(string s, char c)
    {
        s += c;
        var s2 = s.ToCharArray();
        Array.Sort(s2);
        return new string(s2);
    }
    static void getAns(int n)
    {
        var d = new Dictionary<string, int>();
        for (int i = 0; i < n; i++)
        {
            var s = Console.ReadLine().Trim();
            for (int j = 0; j < 26; j++)
            {
                var t = getT(s, (char)(j + 'a'));
                if (d.ContainsKey(t)) d[t]++;
                else d[t] = 1;
            }
        }
        foreach (var x in d)
            if (x.Value == 1) { Console.WriteLine(x.Key); return; }
        Console.WriteLine(-1);
    }
}
0