結果
| 問題 | No.587 七対子 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-04-09 16:49:35 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 3 ms / 2,000 ms | 
| コード長 | 653 bytes | 
| コンパイル時間 | 875 ms | 
| コンパイル使用メモリ | 72,320 KB | 
| 最終ジャッジ日時 | 2025-01-09 15:29:22 | 
| ジャッジサーバーID (参考情報) | judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 35 | 
ソースコード
#include <iostream>
#include <vector>
#include <string>
void solve() {
    std::vector<int> cnt(26, 0);
    {
        std::string s;
        std::cin >> s;
        for (char c : s) ++cnt[c - 'a'];
    }
    for (int i = 0; i < 26; ++i) {
        ++cnt[i];
        bool ok = true;
        for (auto c : cnt) {
            if (c != 0 && c != 2) ok = false;
        }
        if (ok) {
            std::cout << char('a' + i) << std::endl;
            return;
        }
        --cnt[i];
    }
    std::cout << "Impossible" << std::endl;
}
int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    solve();
    return 0;
}
            
            
            
        