結果

問題 No.2124 Guess the Permutation
ユーザー a01sa01toa01sa01to
提出日時 2024-01-03 00:15:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 203,056 KB
実行使用メモリ 24,012 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-01-03 00:15:20
合計ジャッジ時間 4,515 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,000 KB
testcase_01 AC 23 ms
24,012 KB
testcase_02 AC 23 ms
24,012 KB
testcase_03 AC 24 ms
24,012 KB
testcase_04 AC 25 ms
24,012 KB
testcase_05 AC 26 ms
24,012 KB
testcase_06 AC 42 ms
24,012 KB
testcase_07 AC 55 ms
24,012 KB
testcase_08 AC 55 ms
24,012 KB
testcase_09 AC 56 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 Query(int l, int r) {
  cout << "? " << l + 1 << " " << r << endl;
  int res;
  cin >> res;
  return res;
}

int main() {
  int n;
  cin >> n;
  vector<int> a(n);
  int sum = n * (n + 1) / 2;
  rep(i, n - 2) {
    int res = Query(i + 1, n);
    a[i] = sum - res;
    sum -= a[i];
  }
  a[n - 1] = n * (n + 1) / 2 - Query(0, n - 1);
  sum -= a[n - 1];
  a[n - 2] = sum;
  cout << "!";
  rep(i, n) cout << " " << a[i];
  cout << endl;
  return 0;
}
0