結果
問題 | No.514 宝探し3 |
ユーザー | gigime |
提出日時 | 2017-05-05 22:51:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 691 bytes |
コンパイル時間 | 1,481 ms |
コンパイル使用メモリ | 164,944 KB |
実行使用メモリ | 25,348 KB |
平均クエリ数 | 4.00 |
最終ジャッジ日時 | 2024-07-16 13:02:56 |
合計ジャッジ時間 | 2,371 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
24,964 KB |
testcase_01 | AC | 20 ms
24,580 KB |
testcase_02 | AC | 22 ms
24,964 KB |
testcase_03 | AC | 20 ms
24,868 KB |
testcase_04 | AC | 20 ms
25,208 KB |
testcase_05 | AC | 20 ms
24,832 KB |
testcase_06 | AC | 19 ms
24,836 KB |
testcase_07 | AC | 19 ms
25,220 KB |
testcase_08 | AC | 21 ms
24,928 KB |
testcase_09 | AC | 20 ms
25,348 KB |
testcase_10 | AC | 20 ms
24,964 KB |
testcase_11 | AC | 21 ms
24,836 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,l,r) for(int i = (int) (l);i < (int) (r);i++) #define ALL(x) x.begin(),x.end() template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; } template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; } typedef long long ll; const int MAX = 1000000000; int main() { ll A,B,C; printf("%d %d\n",0,0); fflush(stdout); scanf("%lld",&A); printf("%d %d\n",0,MAX); fflush(stdout); scanf("%lld",&B); printf("%d %d\n",MAX,0); fflush(stdout); scanf("%lld",&C); ll X = (A + B - MAX) / 2; ll Y = (A + C - MAX) / 2; printf("%lld %lld\n",X,Y); fflush(stdout); return 0; }