結果
| 問題 | No.513 宝探し2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-05-05 22:29:51 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 770 bytes |
| 記録 | |
| コンパイル時間 | 830 ms |
| コンパイル使用メモリ | 109,136 KB |
| 実行使用メモリ | 25,604 KB |
| 平均クエリ数 | 4.00 |
| 最終ジャッジ日時 | 2024-07-16 12:54:18 |
| 合計ジャッジ時間 | 2,431 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 2 |
ソースコード
#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "math.h"
#include "utility"
#include "string"
#include "map"
#include "unordered_map"
#include "iomanip"
#include "random"
using namespace std;
const long long int MOD = 1000000007;
int a, b, c, d;
int main() {
ios::sync_with_stdio(false);
cout << "0 " << "50000\n";
cin >> a;
cout << "100000 " << "50000\n";
cin >> b;
c = a + b - 100000;
c /= 2;
if (a > c) {
cout << 100000 - b + c << " " << 50000 + c << endl;
cout << 100000 - b + c << " " << 50000 - c << endl;
}
else {
cout << 100000 + a + c << " " << 50000 + c << endl;
cout << 100000 + a + c << " " << 50000 - c << endl;
}
return 0;
}