結果
問題 |
No.2715 Unique Chimatagram
|
ユーザー |
![]() |
提出日時 | 2024-04-06 01:31:08 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 531 bytes |
コンパイル時間 | 2,514 ms |
コンパイル使用メモリ | 205,820 KB |
最終ジャッジ日時 | 2025-02-20 22:18:33 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<string> s(n); for (int i = 0; i < n; i++) { cin >> s[i]; } map<string, int> mp; for (int i = 0; i < n; i++) { for (char c = 'a'; c <= 'z'; c++) { string t = s[i] + c; sort(t.begin(), t.end()); mp[t]++; } } for (auto [t, cnt] : mp) { if (cnt == 1) { cout << t << endl; return 0; } } cout << -1 << endl; }