結果
| 問題 | No.2124 Guess the Permutation |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2024-01-03 00:15:15 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 67 ms / 2,000 ms |
| コード長 | 711 bytes |
| コンパイル時間 | 1,934 ms |
| コンパイル使用メモリ | 193,368 KB |
| 最終ジャッジ日時 | 2025-02-18 15:58:59 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 9 |
ソースコード
#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;
}
a01sa01to