結果
問題 | No.2768 Password Crack |
ユーザー | GOTKAKO |
提出日時 | 2024-05-31 21:40:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 2,302 ms |
コンパイル使用メモリ | 202,300 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 1676.67 |
最終ジャッジ日時 | 2024-05-31 21:41:03 |
合計ジャッジ時間 | 10,367 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int N; cin >> N; string s('a',N); int S; cout << "? " << s << endl; cin >> S; string answer = ""; for(int i=0; i<N; i++){ bool add = false; for(char c='b'; c<='y'; c++){ s.at(i) = c; cout << "? " << s << endl; int now; cin >> now; if(S == now+1){ answer += 'a'; break; } if(now == S+1){ answer += c; break; } } if(add == false) answer += 'z'; s.at(i) = 'a'; } cout << "! " << answer << endl; }