結果

問題 No.2715 Unique Chimatagram
ユーザー t98slider
提出日時 2024-04-17 02:30:38
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 205,040 KB
最終ジャッジ日時 2025-02-21 02:46:00
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21 WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<string> a(n);
    for(auto &&s : a){
        cin >> s;
        sort(s.begin(), s.end());
    }
    sort(a.begin(), a.end());
    if(a[0] == a.back()){
        cout << "-1\n";
        return 0;
    }
    cout << 'a' << a[0] << '\n';
}
0