結果

問題 No.2357 Guess the Function
ユーザー a01sa01toa01sa01to
提出日時 2024-01-08 00:59:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 1,000 ms
コード長 719 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 200,504 KB
実行使用メモリ 24,012 KB
平均クエリ数 2.91
最終ジャッジ日時 2024-01-08 00:59:56
合計ジャッジ時間 4,438 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  cout << "? 100" << endl;
  int x;
  cin >> x;
  if (x == 99) {
    // a = 99; b = 100
    printf("! 99 100");
  }
  else {
    // A + 100 = x mod B
    // A + (100 - x) = 0 mod B
    // A + (99 - x) = -1 mod B
    printf("? %d", 99 - x);
    cout << endl;
    int y;
    cin >> y;
    // A + 100 = x mod (y + 1)
    // A = x - 100 mod (y + 1)
    printf("! %d %d", (x - 100 + (y + 1) * 100) % (y + 1), y + 1);
  }
  cout << endl;
  return 0;
}
0