結果

問題 No.2715 Unique Chimatagram
ユーザー kakel-sankakel-san
提出日時 2024-04-05 21:55:02
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 2,118 bytes
コンパイル時間 9,375 ms
コンパイル使用メモリ 167,304 KB
実行使用メモリ 193,400 KB
最終ジャッジ日時 2024-10-01 02:10:52
合計ジャッジ時間 13,431 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,336 KB
testcase_01 AC 54 ms
30,080 KB
testcase_02 AC 54 ms
30,464 KB
testcase_03 WA -
testcase_04 AC 55 ms
30,592 KB
testcase_05 AC 55 ms
30,332 KB
testcase_06 AC 56 ms
30,336 KB
testcase_07 AC 58 ms
32,352 KB
testcase_08 AC 90 ms
39,680 KB
testcase_09 WA -
testcase_10 AC 93 ms
40,064 KB
testcase_11 AC 91 ms
39,808 KB
testcase_12 AC 90 ms
39,680 KB
testcase_13 AC 85 ms
39,928 KB
testcase_14 AC 84 ms
39,296 KB
testcase_15 AC 88 ms
39,552 KB
testcase_16 AC 91 ms
39,424 KB
testcase_17 AC 87 ms
39,788 KB
testcase_18 AC 87 ms
40,192 KB
testcase_19 AC 87 ms
40,576 KB
testcase_20 AC 83 ms
40,312 KB
testcase_21 AC 86 ms
40,192 KB
testcase_22 AC 87 ms
40,320 KB
testcase_23 AC 84 ms
40,320 KB
testcase_24 AC 87 ms
40,320 KB
testcase_25 AC 89 ms
40,320 KB
testcase_26 AC 85 ms
40,192 KB
testcase_27 AC 84 ms
40,192 KB
testcase_28 AC 94 ms
37,504 KB
testcase_29 AC 93 ms
37,120 KB
testcase_30 AC 99 ms
37,120 KB
testcase_31 AC 100 ms
37,120 KB
testcase_32 AC 100 ms
37,376 KB
testcase_33 AC 54 ms
30,208 KB
testcase_34 AC 53 ms
30,308 KB
testcase_35 AC 55 ms
30,336 KB
testcase_36 AC 54 ms
30,436 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 94 ms
38,400 KB
testcase_42 AC 94 ms
193,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (108 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;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var s = SList(n);
        var dic = new Dictionary<Data, List<int>>();
        for (var i = 0; i < n; ++i)
        {
            var counts = new int[26];
            foreach (var c in s[i]) ++counts[c - 'a'];
            for (var c = 0; c < 26; ++c)
            {
                ++counts[c];
                var data = new Data(counts);
                if (dic.ContainsKey(data)) dic[data].Add(i);
                else dic[data] = new List<int>{ i };
            }
        }
        foreach (var kv in dic)
        {
            if (kv.Value.Count == 1)
            {
                var ans = new List<char>();
                for (var c = 0; c < kv.Key.List.Length; ++c) for (var i = 0; i < kv.Key.List[c]; ++i) ans.Add((char)(c + 'a'));
                WriteLine(string.Concat(ans));
                return;
            }
        }
        WriteLine(-1);
    }
    class Data
    {
        public int Key;
        public int[] List;
        public Data(int[] list)
        {
            List = (int[]) list.Clone();
            var k = 0L;
            foreach (var li in list) k = (k * 11 + li) % 1_000_000_007;
            Key = (int)k;
        }
        public override bool Equals(object obj)
        {
            var b = obj as Data;
            if (Key != b.Key) return false;
            for (var i = 0; i < List.Length; ++i) if (List[i] != b.List[i]) return false;
            return true;
        }
        public override int GetHashCode()
        {
            return Key;
        }
    }
}
0