結果
問題 | No.2124 Guess the Permutation |
ユーザー | a01sa01to |
提出日時 | 2024-01-03 00:15:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 711 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 202,848 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-09-27 18:21:53 |
合計ジャッジ時間 | 3,472 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
25,184 KB |
testcase_01 | AC | 20 ms
25,220 KB |
testcase_02 | AC | 20 ms
24,964 KB |
testcase_03 | AC | 20 ms
24,964 KB |
testcase_04 | AC | 21 ms
24,580 KB |
testcase_05 | AC | 22 ms
24,836 KB |
testcase_06 | AC | 37 ms
24,964 KB |
testcase_07 | AC | 49 ms
24,836 KB |
testcase_08 | AC | 51 ms
24,836 KB |
testcase_09 | AC | 49 ms
25,220 KB |
ソースコード
#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; }