結果

問題 No.587 七対子
ユーザー Yug_min_nullYug_min_null
提出日時 2021-10-01 23:23:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 607 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 189,492 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 16:13:24
合計ジャッジ時間 3,087 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define ll long long
#define INF 1000000000;
#define INF_B 1000000000000000000;
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;

int main(){
  string S; cin >> S;
vector<int> B(26, 0);
  int maxB = 0, count = 0;;
  for(int i = 0; i < (int)S.size(); i++){
    int X = S[i] - 'a';
    B[X]++;
    if(B[X] == 1) count++;
    maxB = max(maxB, B[X]);
  }
  if(!(count == 7 or maxB == 2)) cout << "Impossible" << endl;
  else{
    for(int i = 0; i < 26; i++){
      if(B[i] == 1){
        char ans = 'a' + i;
        cout << ans << endl;
      }
    }
  }
}
0