結果

問題 No.3115 One Power One Kill
ユーザー daiota
提出日時 2025-04-20 09:15:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 1,547 ms
コンパイル使用メモリ 160,148 KB
実行使用メモリ 25,996 KB
平均クエリ数 2.00
最終ジャッジ日時 2025-04-20 09:15:19
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)









int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j;






	cout << 49338 << ' ' << 5483 << endl;
	cout.flush();


	ll K;
	cin >> K;


	if(K==5483) cout << 0 << endl;
	else cout << 1 << endl;
	cout.flush();


	ll ret;
	cin >> ret;












	return 0;

}




0