結果
問題 | No.2124 Guess the Permutation |
ユーザー | hiro1729 |
提出日時 | 2024-08-11 15:38:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 140 ms / 2,000 ms |
コード長 | 284 bytes |
コンパイル時間 | 362 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 86,616 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-08-11 15:38:43 |
合計ジャッジ時間 | 2,336 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
68,832 KB |
testcase_01 | AC | 56 ms
68,440 KB |
testcase_02 | AC | 56 ms
68,952 KB |
testcase_03 | AC | 58 ms
68,312 KB |
testcase_04 | AC | 60 ms
69,080 KB |
testcase_05 | AC | 61 ms
69,616 KB |
testcase_06 | AC | 95 ms
82,264 KB |
testcase_07 | AC | 124 ms
86,616 KB |
testcase_08 | AC | 140 ms
86,232 KB |
testcase_09 | AC | 121 ms
86,488 KB |
ソースコード
N = int(input()) p = [0] * N S = N * (N + 1) // 2 for i in range(1, N - 1): print('?', i + 1, N, flush = True) C = int(input()) p[i - 1] = S - C S = C print('?', 1, N - 1, flush = True) p[N - 1] = N * (N + 1) // 2 - int(input()) p[N - 2] = N * (N + 1) // 2 - sum(p) print('!', *p)