結果

問題 No.305 鍵(2)
ユーザー karinohitokarinohito
提出日時 2024-09-13 23:48:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 202,144 KB
実行使用メモリ 25,460 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-09-13 23:48:41
合計ジャッジ時間 4,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,452 KB
testcase_01 AC 26 ms
24,836 KB
testcase_02 AC 27 ms
24,452 KB
testcase_03 AC 26 ms
24,964 KB
testcase_04 AC 26 ms
24,964 KB
testcase_05 AC 27 ms
25,220 KB
testcase_06 AC 23 ms
24,964 KB
testcase_07 AC 27 ms
25,220 KB
testcase_08 AC 26 ms
24,836 KB
testcase_09 AC 27 ms
25,460 KB
testcase_10 AC 27 ms
24,836 KB
testcase_11 AC 27 ms
24,580 KB
testcase_12 AC 28 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;



int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    string S="??????????";
    for(int i=0;i<10;i++){
        int mx=-1,id=-1;
        for(int j=0;j<10;j++){
            S[i]='0'+j;
            for(int k=0;k<10;k++)cout<<(S[k]=='?'?'0':S[k]);
            cout<<endl;
            ll c;
            string r;
            cin>>c>>r;
            if(r[0]=='u')return 0;
            if(mx<c){
                mx=c;
                id=j;
            }
        }
        S[i]='0'+id;
    }
    
    
}
0