結果

問題 No.2753 鳩の巣原理
ユーザー hiromi_ayasehiromi_ayase
提出日時 2024-05-10 21:54:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 864 bytes
コンパイル時間 5,142 ms
コンパイル使用メモリ 308,448 KB
実行使用メモリ 25,476 KB
平均クエリ数 7.73
最終ジャッジ日時 2024-05-10 21:54:36
合計ジャッジ時間 9,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 23 ms
24,556 KB
testcase_23 AC 23 ms
25,196 KB
testcase_24 AC 23 ms
24,556 KB
testcase_25 AC 23 ms
24,812 KB
testcase_26 AC 24 ms
25,196 KB
testcase_27 AC 24 ms
24,556 KB
testcase_28 AC 23 ms
25,196 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/all>
using namespace std;
using i32 = int;
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
#define FAST_IO                \
  ios::sync_with_stdio(false); \
  cin.tie(0);
const i64 INF = 1001001001001001001;
using Modint = atcoder::static_modint<998244353>;

int ask(int i) {
  cout << "? " << i << endl;
  int ret;
  cin >> ret;
  return ret;
}

void answerYes(int i, int j) {
  cout << "Yes " << i << " " << j << endl;
}

void answerNo() {
  cout << "No" << endl;
}

int main() {
  FAST_IO

  // 1 2 3 4 5 6 7 8
  // 1 1 2 3 4 5 6 7
  int N;
  cin >> N;

  int l = 0;
  int r = N;
  while (r - l > 1) {
    int m = (l + r) / 2;
    int a = ask(m);
    if (a == m) {
      l = m;
    } else {
      r = m;
    }
  }
  if (l == 0) {
    answerNo();
  } else {
    answerYes(l, r);
  }
}
0