結果
| 問題 |
No.2715 Unique Chimatagram
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-17 02:39:11 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 47 ms / 2,000 ms |
| コード長 | 695 bytes |
| コンパイル時間 | 2,392 ms |
| コンパイル使用メモリ | 205,512 KB |
| 最終ジャッジ日時 | 2025-02-21 02:46:12 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 40 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int n, j = 0;
cin >> n;
vector<string> a(n), S(26 * n);
for(auto &&s : a){
cin >> s;
sort(s.begin(), s.end());
for(char c = 'a'; c <= 'z'; c++){
S[j] = s;
S[j].insert(upper_bound(S[j].begin(), S[j].end(), c), c);
j++;
}
}
sort(S.begin(), S.end());
for(int i = 0; i < S.size(); ){
int p = i;
while(i < S.size() && S[i] == S[p]) i++;
if(i - p == 1){
cout << S[p] << '\n';
return 0;
}
}
cout << -1 << '\n';
}