結果
問題 | No.2124 Guess the Permutation |
ユーザー | tnakao0123 |
提出日時 | 2022-11-21 18:27:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
ソースコード
/* -*- 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; }