結果

問題 No.587 七対子
ユーザー 0x19f0x19f
提出日時 2017-11-03 22:45:16
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 1,434 ms
コンパイル使用メモリ 166,576 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 19:43:23
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i, a, n) for(ll i = ((ll) a); i < ((ll) n); i++)
using namespace std;
typedef long long ll;

string S;

int main(void) {
  cin >> S;

  map<char, ll> mp;
  REP(i, 0, 13) mp[S[i]]++;

  char ans = '*';
  for(auto p : mp) {
    char c = p.first;
    ll cnt = p.second;
    if(cnt > 2) {
      cout << "Impossible" << endl;
      return 0;
    }
    if(cnt == 1) {
      if(ans != '*') {
        cout << "Impossible" << endl;
        return 0;
      }
      ans = c;
    }
  }
  cout << ans << endl;
}
0