結果

問題 No.2715 Unique Chimatagram
ユーザー tobbietobbie
提出日時 2024-05-04 13:41:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 752 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 186,508 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-05-04 13:41:53
合計ジャッジ時間 5,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 87 ms
22,016 KB
testcase_09 AC 87 ms
23,168 KB
testcase_10 AC 93 ms
22,912 KB
testcase_11 AC 96 ms
23,808 KB
testcase_12 AC 89 ms
22,400 KB
testcase_13 AC 92 ms
23,296 KB
testcase_14 AC 84 ms
22,144 KB
testcase_15 AC 86 ms
22,784 KB
testcase_16 AC 85 ms
22,016 KB
testcase_17 AC 90 ms
22,912 KB
testcase_18 AC 91 ms
27,776 KB
testcase_19 AC 92 ms
27,776 KB
testcase_20 AC 92 ms
27,648 KB
testcase_21 AC 93 ms
27,904 KB
testcase_22 AC 91 ms
27,648 KB
testcase_23 AC 99 ms
27,648 KB
testcase_24 AC 91 ms
27,776 KB
testcase_25 AC 95 ms
27,776 KB
testcase_26 AC 91 ms
27,520 KB
testcase_27 AC 90 ms
27,776 KB
testcase_28 AC 41 ms
5,376 KB
testcase_29 AC 42 ms
5,376 KB
testcase_30 AC 41 ms
5,376 KB
testcase_31 AC 41 ms
5,376 KB
testcase_32 AC 43 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 64 ms
14,080 KB
testcase_42 AC 21 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) {
    map<char, int> tmp = S[i];
    rep(j, 26) {
      tmp[int('a') + j]++;
      T[tmp]++;
      tmp[int('a') + j]--;
    }
  }
  auto prt = [&](map<char, int> mp) {
    for (auto it = mp.begin(); it != mp.end(); it++)
      rep(i, it->second)
	cout << it->first;
    return;
  };
  for (auto it = T.begin(); it != T.end(); it++) {
    if (it->second == 1) {
      prt(it->first); cout << endl;
      return 0;
    }
  }
  cout << -1 << endl;
  return 0;
}
0