結果

問題 No.2715 Unique Chimatagram
ユーザー futamegawafutamegawa
提出日時 2024-04-05 22:28:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 998 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 257,820 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 02:40:49
合計ジャッジ時間 11,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 52 ms
5,248 KB
testcase_09 WA -
testcase_10 AC 66 ms
5,248 KB
testcase_11 AC 60 ms
5,248 KB
testcase_12 AC 53 ms
5,248 KB
testcase_13 AC 59 ms
5,248 KB
testcase_14 AC 53 ms
5,248 KB
testcase_15 AC 61 ms
5,248 KB
testcase_16 AC 58 ms
5,248 KB
testcase_17 AC 56 ms
5,248 KB
testcase_18 AC 624 ms
5,248 KB
testcase_19 AC 626 ms
5,248 KB
testcase_20 AC 617 ms
5,248 KB
testcase_21 AC 617 ms
5,248 KB
testcase_22 AC 616 ms
5,248 KB
testcase_23 AC 614 ms
5,248 KB
testcase_24 AC 625 ms
5,248 KB
testcase_25 AC 612 ms
5,248 KB
testcase_26 AC 630 ms
5,248 KB
testcase_27 AC 618 ms
5,248 KB
testcase_28 AC 19 ms
5,248 KB
testcase_29 AC 19 ms
5,248 KB
testcase_30 AC 19 ms
5,248 KB
testcase_31 AC 20 ms
5,248 KB
testcase_32 AC 20 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 48 ms
5,248 KB
testcase_42 AC 140 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using llu = long long unsigned;

// メイン関数
int main() {
    int n;
    cin >> n;

    vector<string> s(n);
    vector<map<char, int>> data(n);
    for (int i=0; i<n; ++i) {
        cin >> s[i];
        for (int j=0; j<s[i].size(); ++j) {
            data[i][s[i][j]]++;
        }
    }

    vector<bool> isNg(n);
    for (int i=0; i<n; ++i) {
        for (int j=i+1; j<n; ++j) {
            if (s[i].size() == s[j].size()) {
                int count = 0;
                for (char c='a'; c<='z'; ++c) {
                    if (data[i][c] != data[j][c]) { count++; }
                }
                if (count == 0) {
                    isNg[i] = true;
                    isNg[j] = true;
                }
            }
        }
    }

    string ret = "-1";
    for (int i=0; i<n; ++i) {
        if (!isNg[i]) {
            ret = s[i] + 'a';
            break;
        }
    }

    cout << ret << endl; return 0;
}
0