結果

問題 No.548 国士無双
ユーザー nksk38
提出日時 2017-07-28 22:32:46
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 892 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 88,136 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-05 20:22:27
合計ジャッジ時間 1,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<vector>
#include<functional>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<numeric>
#include<limits>

#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()

using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<ll, string> pls;

map<char, int> m;
string str = "abcdefghijklm";

int main()
{
	string s; cin >> s;

	for (int i = 0; i < s.size(); i++) {
		m[s[i]]++;
	}

	int cnt = 0;
	char c=' ';
	for (int i = 0; i < str.size(); i++) {
		cnt += m[str[i]];
		if (m[str[i]] == 0) {
			c = str[i];
		}
	}

	if (cnt < 12) {
		cout << "Impossible" << endl;
	}else{
		if (c == ' ') {
			for (int i = 0; i < str.size(); i++)
				cout << str[i] << endl;
		}
		else
			cout << c << endl;
	}
	return 0;
}
0