結果

問題 No.587 七対子
ユーザー agisagis
提出日時 2017-11-03 22:30:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 824 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 169,804 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 05:05:56
合計ジャッジ時間 2,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll = long long;
using ld = long double;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define reps(i,s,n) for(int i=(int)(s);i<(int)(n);i++)
const ll mod = 1e9 + 7;
const int INF = 1e9;

int main() {
	cin.sync_with_stdio(false);
	string s;
	cin >> s;
	sort(s.begin(), s.end());
	int c[26] = {};
	rep(i, s.size()) {
		if (s[i] == s[i + 1]) {
			c[s[i] - 'a']++;
			if (c[s[i] - 'a'] > 1) {
				cout << "Impossible" << endl;
				return 0;
			}
			s[i] = '0';
			s[i + 1] = '0';
			i++;
		}
	}
	cout << s << endl;
	int cnt = 0;
	char ans;
	rep(i, s.size()) {
		if (s[i] != '0') {
			cnt++;
			ans = s[i];
			if (c[ans - 'a'] != 0) {
				cout << "Impossible" << endl;
				return 0;
			}
		}
	}
	if (cnt != 1)cout << "Impossible" << endl;
	else cout << ans << endl;
	return 0;
}
0