結果

問題 No.2848 Birthday Hit and Blow
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2024-06-05 02:04:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 565 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 69,904 KB
実行使用メモリ 25,220 KB
平均クエリ数 2.50
最終ジャッジ日時 2024-07-17 02:36:26
合計ジャッジ時間 1,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,940 KB
testcase_01 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main() {
    int T;
    cin >> T;
    if (T != 1) {
        return 1;
    }
    cout << "? 1234" << endl;
    int h1, b1;
    cin >> h1 >> b1;
    if (h1 == -1 || b1 == -1) {
        return 1;
    }
    cout << "? 9810" << endl;
    int h2, b2;
    cin >> h2 >> b2;
    if (h2 == -1 || b2 == -1) {
        return 1;
    }
    cout << "? 0123" << endl;
    int h3, b3;
    cin >> h3 >> b3;
    if (h3 == -1 || b3 == -1) {
        return 1;
    }
    cout << "! 0823" << endl;
    int a;
    cin >> a;
}
0