結果

問題 No.2124 Guess the Permutation
ユーザー tnakao0123tnakao0123
提出日時 2022-11-21 18:38:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 41,264 KB
実行使用メモリ 24,696 KB
平均クエリ数 374.60
最終ジャッジ日時 2023-10-22 08:22:45
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge9 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,696 KB
testcase_01 AC 26 ms
24,696 KB
testcase_02 AC 25 ms
24,696 KB
testcase_03 AC 26 ms
24,696 KB
testcase_04 AC 26 ms
24,696 KB
testcase_05 AC 27 ms
24,696 KB
testcase_06 AC 43 ms
24,696 KB
testcase_07 AC 56 ms
24,696 KB
testcase_08 AC 57 ms
24,696 KB
testcase_09 AC 56 ms
24,696 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