結果
| 問題 |
No.2124 Guess the Permutation
|
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2022-11-21 18:27:01 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 696 bytes |
| コンパイル時間 | 438 ms |
| コンパイル使用メモリ | 41,160 KB |
| 実行使用メモリ | 25,220 KB |
| 平均クエリ数 | 374.60 |
| 最終ジャッジ日時 | 2024-09-22 09:18:04 |
| 合計ジャッジ時間 | 1,688 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 9 |
ソースコード
/* -*- coding: utf-8 -*-
*
* 2124.cc: No.2124 Guess the Permutation - yukicoder
*/
#include<cstdio>
#include<algorithm>
using namespace std;
/* constant */
const int MAX_N = 1000;
/* typedef */
/* global variables */
int ps[MAX_N];
/* subroutines */
int query(int l, int r) {
printf("? %d %d\n", l + 1, r); fflush(stdout);
int s;
scanf("%d", &s);
return s;
}
/* main */
int main() {
int n;
scanf("%d", &n);
int sum = 0;
for (int i = 0; i + 1 < n; i++) {
ps[i] = query(i, i + 1);
sum += ps[i];
}
ps[n - 1] = n * (n + 1) / 2 - sum;
putchar('!');
for (int i = 0; i < n; i++) printf(" %d", ps[i]);
putchar('\n'); fflush(stdout);
return 0;
}
tnakao0123