結果
問題 | No.2124 Guess the Permutation |
ユーザー | kpinkcat |
提出日時 | 2023-09-24 02:25:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 639 bytes |
コンパイル時間 | 1,974 ms |
コンパイル使用メモリ | 203,792 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-07-17 02:28:03 |
合計ジャッジ時間 | 3,180 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
#include <bits/stdc++.h> #include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> #include<string> using ll = long long; using namespace std; int main() { ll n, all; cin >> n; vector<ll> a(n); all = n * (n+1)/2; for (int i = 2; i <= n; i++){ ll tmp; cout << "? " << i << " " << n << endl; cin >> tmp; a[i-2] = all - tmp; all = tmp; } a[n-1] = all; string delim = ""; cout << "! "; for (auto x : a){ cout << delim << x; delim = " "; } cout << endl; }