結果
問題 |
No.587 七対子
|
ユーザー |
|
提出日時 | 2019-01-01 01:28:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 493 bytes |
コンパイル時間 | 1,648 ms |
コンパイル使用メモリ | 173,268 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 14:20:23 |
合計ジャッジ時間 | 2,800 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 WA * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); string s; cin >> s; map<char, int> mp; for(int i = 0; i < s.size(); i++) { mp[s[i]]++; } bool one = false; char ans = '?'; for(auto i : mp) { if(one && i.second == 1) { cout << "Impossible" << endl; return 0; } if(!one && i.second == 1) { one = true; ans = i.first; } } if(ans == '?') cout << "Impossible" << endl; else cout << ans << endl; return 0; }