結果

問題 No.305 鍵(2)
ユーザー maine_honzukimaine_honzuki
提出日時 2021-05-14 19:24:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 202,696 KB
実行使用メモリ 25,220 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-07-17 03:03:46
合計ジャッジ時間 3,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

//https://ncode.syosetu.com/n4830bu/305/
#include <bits/stdc++.h>
using namespace std;

int main() {
    string ans = "0000000000";
    int bef = 0;
    for (int i = 0; i < 10; i++) {
        for (int j = 0; j < 10; j++) {
            string maine = ans;
            maine[i] = j + '0';
            cout << maine << endl;
            int book;
            string s;
            cin >> book >> s;
            if (book == 10)
                return 0;
            if (book > bef) {
                bef = book;
                ans = maine;
            }
        }
    }
}
0