結果

問題 No.514 宝探し3
ユーザー TAISA_TAISA_
提出日時 2018-06-22 19:11:13
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 159,272 KB
実行使用メモリ 25,348 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-16 15:52:12
合計ジャッジ時間 2,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define all(vec) vec.begin(),vec.end()
typedef long long int ll;
typedef pair<int,int> P;
const ll MOD=1000000007;
const ll INF=1000000010;
const ll LINF=4000000000000000010LL;
const int MAX=310;
const double EPS=1e-3;
int dx[4]={0,1,0,-1};
int dy[4]={1,0,-1,0};
int main(){
	cout<<0<<" "<<0<<endl;
	ll d;
	cin>>d;
	cout<<d<<" "<<0<<endl;
	ll d2;
	cin>>d2;
	cout<<(d+d-d2)/2<<" "<<(d+d-d2)/2-d+d2<<endl;
    return 0;
}
0