結果

問題 No.2962 Sum Bomb Bomber
ユーザー t98slidert98slider
提出日時 2024-11-16 15:43:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 905 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 200,808 KB
実行使用メモリ 109,036 KB
平均クエリ数 51.20
最終ジャッジ日時 2024-11-16 15:45:46
合計ジャッジ時間 127,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 85 ms
25,208 KB
testcase_05 AC 85 ms
25,208 KB
testcase_06 AC 73 ms
24,440 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 83 ms
24,824 KB
testcase_17 AC 84 ms
25,592 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 75 ms
25,208 KB
testcase_22 AC 83 ms
25,208 KB
testcase_23 AC 88 ms
25,208 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 89 ms
25,208 KB
testcase_27 AC 88 ms
24,824 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 83 ms
24,824 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 98 ms
24,824 KB
testcase_39 TLE -
testcase_40 AC 90 ms
25,464 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 76 ms
24,680 KB
testcase_44 AC 102 ms
24,824 KB
testcase_45 AC 85 ms
25,208 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 88 ms
24,824 KB
testcase_49 TLE -
testcase_50 AC 88 ms
25,592 KB
testcase_51 AC 76 ms
25,196 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 73 ms
25,196 KB
testcase_55 AC 74 ms
25,580 KB
testcase_56 AC 75 ms
25,196 KB
testcase_57 TLE -
testcase_58 AC 92 ms
25,196 KB
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 88 ms
24,796 KB
testcase_63 AC 82 ms
25,452 KB
testcase_64 AC 83 ms
24,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    auto ask = [&](int x, int y){
        ll res = 0;
        cout << "1 " << x << " " << y << endl;
        cin >> res;
        return res;
    };
    int l = -1'000'000'000, r = 1'000'000'000;
    while(l < r){
        int mid = (l + r) / 2;
        ll v1 = ask(mid, 1000000000);
        ll v2 = ask(mid + 1, 1000000000);
        if(v1 <= v2) r = mid;
        else l = mid + 1;
    }
    int X = ask(l, 0) < ask(r, 0) ? l : r;
    l = -1'000'000'000, r = 1'000'000'000;
    while(l < r){
        int mid = (l + r) / 2;
        ll v1 = ask(1000000000, mid);
        ll v2 = ask(1000000000, mid + 1);
        if(v1 <= v2) r = mid;
        else l = mid + 1;
    }
    int Y = ask(0, l) < ask(0, r) ? l : r;
    cout << "2 " << X << " " << Y << endl;
}
0