結果

問題 No.2715 Unique Chimatagram
ユーザー tobbietobbie
提出日時 2024-05-04 13:57:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 1,759 ms
コンパイル使用メモリ 186,568 KB
実行使用メモリ 17,536 KB
最終ジャッジ日時 2024-05-04 13:58:05
合計ジャッジ時間 4,240 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 36 ms
11,648 KB
testcase_09 AC 37 ms
12,288 KB
testcase_10 AC 37 ms
12,160 KB
testcase_11 AC 38 ms
12,416 KB
testcase_12 AC 36 ms
11,904 KB
testcase_13 AC 39 ms
12,160 KB
testcase_14 AC 37 ms
11,776 KB
testcase_15 AC 38 ms
12,032 KB
testcase_16 AC 38 ms
11,648 KB
testcase_17 AC 38 ms
12,160 KB
testcase_18 AC 58 ms
17,280 KB
testcase_19 AC 59 ms
17,408 KB
testcase_20 AC 58 ms
17,280 KB
testcase_21 AC 59 ms
17,536 KB
testcase_22 AC 60 ms
17,536 KB
testcase_23 AC 72 ms
17,408 KB
testcase_24 AC 57 ms
17,408 KB
testcase_25 AC 57 ms
17,408 KB
testcase_26 AC 58 ms
17,280 KB
testcase_27 AC 59 ms
17,280 KB
testcase_28 AC 9 ms
5,376 KB
testcase_29 AC 8 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
testcase_31 AC 8 ms
5,376 KB
testcase_32 AC 9 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 9 ms
5,376 KB
testcase_40 AC 8 ms
5,376 KB
testcase_41 AC 28 ms
8,192 KB
testcase_42 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, n) for (int i = 0; i < (int)n; i++)

int main() {
  int N;
  cin >> N;
  vector<map<char, int>> S(N);
  rep(i, N) {
    string Si;
    cin >> Si;
    for (char c : Si)
      S[i][c]++;
  }
  map<map<char, int>, int> T;
  rep(i, N) {
    rep(j, 26) {
      map<char, int> tmp = S[i];
      tmp[int('a') + j]++;
      T[tmp]++;
    }
  }
  auto prt = [&](map<char, int> mp) {
    for (auto it = mp.begin(); it != mp.end(); it++)
      rep(i, it->second)
	cout << it->first;
    cout << endl;
    return;
  };
  for (auto it = T.begin(); it != T.end(); it++) {
    if (it->second == 1) {
      prt(it->first);
      return 0;
    }
  }
  cout << -1 << endl;
  return 0;
}
0