結果

問題 No.2357 Guess the Function
ユーザー a01sa01to
提出日時 2024-01-08 00:59:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 28 ms / 1,000 ms
コード長 719 bytes
コンパイル時間 1,918 ms
コンパイル使用メモリ 191,188 KB
最終ジャッジ日時 2025-02-18 16:30:52
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

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