結果

問題 No.305 鍵(2)
ユーザー CleyLCleyL
提出日時 2020-02-18 16:02:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 611 ms
コンパイル使用メモリ 65,160 KB
実行使用メモリ 25,312 KB
平均クエリ数 52.15
最終ジャッジ日時 2024-07-17 02:32:22
合計ジャッジ時間 2,216 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    string s = "";
    for(int i = 0; 10 > i; i++){
        int def = 0;
        for(int j = 0; 10 > j; j++){
            cout << s << j;
            for(int k = 0; 10-s.size()-1 > k; k++){
                cout << "0";
            }
            cout << endl;
            int n;string c;cin>>n>>c;
            if(n == 10){
              return 0;
            }
            if(!j){
                def = n;
            }else{
                if(def > n){
                    s.push_back('0');
                    break;
                }else if(def < n){
                    s.push_back('0'+j);
                    break;
                }
            }
        }
    }
}
0