結果

問題 No.305 鍵(2)
ユーザー otsnskotsnsk
提出日時 2015-12-06 18:01:34
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,068 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 73,220 KB
実行使用メモリ 25,220 KB
平均クエリ数 46.00
最終ジャッジ日時 2024-07-16 08:03:33
合計ジャッジ時間 1,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <cmath>

#define FORR(i,b,e) for(int i=(b);i<(int)(e);++i)
#define FOR(i,e) FORR(i,0,e)
#define ALL(c) begin(c), end(c)
#define dump(var) cerr << #var ": " << var << "\n"
#define dumpc(con) for(auto& e: con) cerr << e << " "; cerr<<"\n"

using namespace std;


int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);


    string ans, x, res;
    int fm;

    ans = "0000000000";
    x = "0000000000";
    cout << x << endl;
    cin >> fm;
    getline(cin, res);

    FOR(i, 10) {
        FORR(j, 1, 10) {
            int m;
            x[i] = '0' + j;
            cout << x << endl;
            cin >> m;
            getline(cin, res);
            if (m == 10) {
                return 0;
            }
            else if (fm < m) {
                ans[i] = x[i];
                break;
            }
            else if (fm > m) {
                break;
            }
        }
        x[i] = '0';
    }
    cout << ans << endl;
    getline(cin, res);
    
    return 0;
}
0