結果

問題 No.513 宝探し2
ユーザー rapurasurapurasu
提出日時 2017-05-05 23:51:53
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 157,704 KB
実行使用メモリ 25,476 KB
平均クエリ数 2.75
最終ジャッジ日時 2024-07-17 01:04:25
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
typedef long long LL;
int main(){
    cout<<0<<" "<<0<<endl; 
    LL a;
    cin>>a;
    if(a==0){
       return 0;
    }
    cout<<0<<" "<<100000<<endl;
    LL b;
    cin>>b;
    if(b==0){
       return 0;
    }
    LL c=(a+b-100000)/2;
    cout<<c<<" "<<a-c<<endl;
    return(0);
}
0