結果

問題 No.3084 Identify f(x)
ユーザー er
提出日時 2025-04-05 19:54:44
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 113,348 KB
実行使用メモリ 25,984 KB
平均クエリ数 3.00
最終ジャッジ日時 2025-04-05 19:54:47
合計ジャッジ時間 2,490 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <math.h>
#include <queue>
#include <deque>
#include <map>
#include <set>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define all(a) a.begin(), a.end()
#define arr(a) a.rbegin(), a.rend()
using ll = long long;

//Konishii

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int a, b;
    cout << "? 0" << endl;
    cin >> b;
    int tmp;
    cout << "? 1" << endl;
    cin >> tmp;
    a = tmp - b;
    cout << "! " << a << " " << b << endl;
}
0