結果
| 問題 |
No.548 国士無双
|
| コンテスト | |
| ユーザー |
SSRS
|
| 提出日時 | 2020-08-24 07:44:57 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 447 bytes |
| コンパイル時間 | 774 ms |
| コンパイル使用メモリ | 75,876 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-06 03:32:26 |
| 合計ジャッジ時間 | 1,635 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
string S;
cin >> S;
bool ok = false;
for (int i = 0; i < 13; i++){
char c = 'a' + i;
string T = S + c;
vector<int> cnt(13, 0);
for (int j = 0; j < 14; j++){
cnt[T[j] - 'a']++;
}
sort(cnt.begin(), cnt.end());
if (cnt[0] != 0){
cout << c << endl;
ok = true;
}
}
if (!ok){
cout << "Impossible" << endl;
}
}
SSRS