結果
問題 | No.305 鍵(2) |
ユーザー | KKT89 |
提出日時 | 2020-06-09 03:00:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 636 bytes |
コンパイル時間 | 728 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 25,460 KB |
平均クエリ数 | 52.15 |
最終ジャッジ日時 | 2024-07-17 02:44:50 |
合計ジャッジ時間 | 2,113 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,836 KB |
testcase_01 | AC | 27 ms
25,092 KB |
testcase_02 | AC | 26 ms
25,460 KB |
testcase_03 | AC | 27 ms
25,092 KB |
testcase_04 | AC | 27 ms
24,964 KB |
testcase_05 | AC | 29 ms
25,204 KB |
testcase_06 | AC | 26 ms
24,580 KB |
testcase_07 | AC | 27 ms
25,220 KB |
testcase_08 | AC | 28 ms
24,964 KB |
testcase_09 | AC | 28 ms
25,220 KB |
testcase_10 | AC | 27 ms
24,836 KB |
testcase_11 | AC | 28 ms
24,836 KB |
testcase_12 | AC | 29 ms
25,220 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <set> #include <map> using namespace std; typedef long long int ll; string s; int x; void ask(string s){ cout << s << endl; string t; cin >> x >> t; if(t=="unlocked")exit(0); } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); s=""; for(int i=0;i<10;i++){ s+='0'; } int id=0; while(1){ ask(s); int xx=x; s[id]='1'; ask(s); if(x==xx){ for(int i=2;i<=9;i++){ s[id]=(char)('0'+i); ask(s); if(x>xx){ id++; break; } } } else if(xx>x){ s[id]='0'; id++; } else{ s[id]='1'; id++; } } }