結果
| 問題 | No.2715 Unique Chimatagram |
| コンテスト | |
| ユーザー |
mint
|
| 提出日時 | 2024-04-05 23:09:15 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 422 bytes |
| 記録 | |
| コンパイル時間 | 1,661 ms |
| コンパイル使用メモリ | 225,604 KB |
| 実行使用メモリ | 11,972 KB |
| 最終ジャッジ日時 | 2026-07-04 10:41:51 |
| 合計ジャッジ時間 | 3,488 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 36 WA * 4 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int n; cin >> n;
map<string, int> m;
while(n--){
string s; cin >> s;
sort(s.begin(), s.end());
m[s]++;
}
for(auto e : m){
if(e.second == 1){
cout << e.first << 'a' << '\n';
return 0;
}
}
cout << -1 << '\n';
return 0;
}
mint