結果

問題 No.514 宝探し3
コンテスト
ユーザー RIGIH
提出日時 2017-06-26 22:49:40
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 466 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 382 ms
コンパイル使用メモリ 77,684 KB
実行使用メモリ 28,592 KB
平均クエリ数 3.00
最終ジャッジ日時 2026-03-31 02:02:14
合計ジャッジ時間 1,531 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<stdio.h>
#include <iostream>
#include <cstring>
#include <math.h>
using namespace std;


int main(){
		/*int i;
		for(i=0;i<100;i++){
			cout << 0 << " " << i << endl;
			int d;
			cin>>d;
			if(d==0)return 0;
		}*/


		cout<<0<<" "<<0<<endl;
		int d;
		cin>>d;

		cout<<0<<" "<<d<<endl;
		int e;
		cin>>e;

		if(e%2==0){
			cout<<e/2<<" "<<d-e/2<<endl;
			return 0;
		}
		else{
			cout<<(e+1)/2<<" "<<d-(e-1)/2<<endl;
			return 0;
		}
	
	


	
	return 0;
}
0