結果

問題 No.2357 Guess the Function
ユーザー kenken714
提出日時 2025-03-07 14:41:54
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 734 bytes
コンパイル時間 2,060 ms
コンパイル使用メモリ 192,136 KB
実行使用メモリ 25,972 KB
平均クエリ数 2.91
最終ジャッジ日時 2025-03-07 14:41:58
合計ジャッジ時間 3,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

#define REP(i, n) for (int i = 0; i < n; i++)
#define REPR(i, n) for (int i = n; i >= 0; i--)
#define FOR(i, m, n) for (ll i = m; i < n; i++)
#define FORR(i, m, n) for (ll i = m; i >= n; i--)
#define REPO(i, n) for (ll i = 1; i <= n; i++)
#define ll long long
#define INF (ll)1ll << 60
#define MINF (-1 * INF)
#define ALL(n) n.begin(), n.end()
#define MOD (ll)1000000007
#define P pair<ll, ll>

int main(){
  ll res1, res2, a, b;
  cout <<"? 100" << endl;
  cin >> res1;
  if(res1 == 99){
    cout << "! 99 100" << endl;
    return 0;
  }
  cout <<"? " << 100 - res1 - 1 << endl;
  cin >> res2;
  b = res2 + 1;
  a = (res1 - 100 + b * 1000) % b;
  cout << "! " << a <<" " << b << endl;
}
0