結果
問題 | No.2124 Guess the Permutation |
ユーザー | ああいい |
提出日時 | 2022-11-29 13:17:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 318 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,284 KB |
実行使用メモリ | 86,232 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-10-07 00:11:16 |
合計ジャッジ時間 | 2,113 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
68,960 KB |
testcase_01 | AC | 59 ms
68,176 KB |
testcase_02 | AC | 59 ms
68,056 KB |
testcase_03 | AC | 64 ms
68,312 KB |
testcase_04 | AC | 64 ms
69,464 KB |
testcase_05 | AC | 66 ms
69,592 KB |
testcase_06 | AC | 102 ms
82,136 KB |
testcase_07 | AC | 128 ms
85,208 KB |
testcase_08 | AC | 130 ms
85,848 KB |
testcase_09 | AC | 130 ms
86,232 KB |
ソースコード
N = int(input()) now = N * (N + 1) / 2 ans = [] for i in range(N - 1,1,-1): l = 1 r = i print("?",l,r) S = int(input()) t = now - S ans.append(int(t)) now -= t print("?",2,N) S = int(input()) one = N * (N + 1) // 2 - S ans.append(int(now - one)) ans.append(one) print("!",*reversed(ans))