結果
問題 | No.548 国士無双 |
ユーザー | @abcde |
提出日時 | 2019-02-24 11:48:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,478 bytes |
コンパイル時間 | 1,477 ms |
コンパイル使用メモリ | 163,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-05 20:35:17 |
合計ジャッジ時間 | 2,235 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 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 | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { // 1. 入力情報取得. string S; cin >> S; // 2. Sに1文字加えて, 問題文の条件を満たすように出来るか? string str = "abcdefghijklm"; // 2-1. 問題文の条件を満たす文字列の配列を作成. string judgment[13]; for(int i = 0; i < 13; i++){ judgment[i] = str + str[i]; sort(judgment[i].begin(), judgment[i].end()); } // 2-2. 入力文字列 S に 1文字加えて, 2-1. の 配列 と 照合. int counter = 0; for(int i = 0; i < 13; i++){ char c = str[i]; // 2-1. 入力文字列 S に 1文字加え, 昇順sort. string X = S + c; sort(X.begin(), X.end()); // 2-2. 比較対象文字列 の 配列 と 照合. for(int j = 0; j < 13; j++){ // 文字列X, Y を比較し, 等しければ, 追加した文字(c)を出力. if(X == judgment[j]){ cout << c << endl; // cout << "X=" << X << " judgment=" << judgment[j] << " c=" << c << endl; // ex. // [入力値] // abcdfghijklmm // -> X=abcdefghijklmm judgment=abcdefghijklmm c=e のように照合される. counter++; break; } } } // 3. 終了. if(counter == 0) cout << -1 << endl; return 0; }