結果

問題 No.2124 Guess the Permutation
ユーザー tnakao0123tnakao0123
提出日時 2022-11-21 18:38:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 41,412 KB
実行使用メモリ 25,336 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-22 09:21:51
合計ジャッジ時間 1,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,940 KB
testcase_01 AC 23 ms
25,220 KB
testcase_02 AC 21 ms
24,836 KB
testcase_03 AC 22 ms
25,220 KB
testcase_04 AC 25 ms
25,336 KB
testcase_05 AC 26 ms
24,836 KB
testcase_06 AC 40 ms
25,220 KB
testcase_07 AC 54 ms
24,836 KB
testcase_08 AC 55 ms
25,220 KB
testcase_09 AC 53 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- 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);

  ps[0] = n * (n + 1) / 2 - query(1, n);
  int sum = ps[0];
  for (int i = 1; i + 1 < n; i++) {
    ps[i] = query(0, i + 1) - sum;
    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;
}
0