結果
問題 | No.514 宝探し3 |
ユーザー | Ymgch_K |
提出日時 | 2017-05-09 17:57:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,846 bytes |
コンパイル時間 | 1,463 ms |
コンパイル使用メモリ | 158,992 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-16 13:38:03 |
合計ジャッジ時間 | 2,709 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
24,964 KB |
testcase_01 | AC | 19 ms
24,964 KB |
testcase_02 | AC | 20 ms
25,208 KB |
testcase_03 | AC | 20 ms
25,604 KB |
testcase_04 | AC | 21 ms
24,836 KB |
testcase_05 | AC | 22 ms
24,964 KB |
testcase_06 | AC | 20 ms
24,964 KB |
testcase_07 | AC | 19 ms
25,220 KB |
testcase_08 | AC | 20 ms
25,348 KB |
testcase_09 | AC | 18 ms
24,836 KB |
testcase_10 | AC | 20 ms
24,964 KB |
testcase_11 | AC | 20 ms
24,964 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define OUT(x) cout << #x << " = " << x << endl; #define rep(i, n) for (int (i) = 0; (i) < (int)(n); (i)++) #define rer(i, l, r) for (int (i) = (int)(l); (i) <= (int)(r); (i)++) #define reu(i, l, r) for (int (i) = (int)(l); (i) < (int)(r); (i)++) #define each(i, v) for (auto i : v) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define pb(x) push_back(x) #define bp(x) __builtin_popcount(x) #define mp(x, y) make_pair((x), (y)) #define fi first #define se second #define setp(x) setprecision(x) #define mset(m, v) memset(m, v, sizeof(m)) static const int INF = 0x3f3f3f3f; static const long long INFL = 0x3f3f3f3f3f3f3f3fLL; static const int MOD = 1000000007; static const double PI = 3.14159265358979; #define int long long typedef vector<double> vd; typedef vector<string> vs; typedef vector<bool> vb; typedef vector<int> vi; typedef pair<int, int> pii; typedef vector<pii> vpii; template<typename T> void pv(T a, T b) { for (T i = a; i != b; i ++) cout << *i << " "; cout << endl; } template<typename T, typename U> inline void amin(T &x, U y) { if (y < x) x = y; } template<typename T, typename U> inline void amax(T &x, U y) { if (x < y) x = y; } int in() { int _x; cin >> _x; return _x; } signed main() { const int n = 1000000000; cout << 0 << ' ' << 0 << endl; int d1 = in(); cout << n << ' ' << 0 << endl; int d2 = in(); cout << (d1 - d2 + n) / 2 << ' ' << (d1 + d2 - n) / 2 << endl; return 0; }