結果

問題 No.2962 Sum Bomb Bomber
ユーザー 沙耶花沙耶花
提出日時 2024-11-16 15:39:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 4,074 ms
コンパイル使用メモリ 260,276 KB
実行使用メモリ 25,568 KB
平均クエリ数 124.63
最終ジャッジ日時 2024-11-16 15:40:03
合計ジャッジ時間 14,311 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL
long long query(long long x,long long y){
	cout<<1<<' '<<x<<' '<<y<<endl;
	long long res;cin>>res;
	return res;
}
int main(){
	int n;cin>>n;
	vector<long long> ans(2);
	rep(i,2){
		long long ok = -1000000000,ng = 1000000000;
		while(ng-ok>1LL){
			long long mid = (ok+ng)/2;
			long long A,B;
			{
				long long x = mid,y = 0;
				if(i)swap(x,y);
				A = query(x,y);
			}
			{
				long long x = mid+1,y = 0;
				if(i)swap(x,y);
				B = query(x,y);
			}
			if(A<B)ng = mid;
			else ok = mid;
		}
		ans[i] = ok+1;
	}
	cout<<2<<' '<<ans[0]<<' '<<ans[1]<<endl;
	return 0;
}
0