結果

問題 No.2124 Guess the Permutation
ユーザー gr1msl3ygr1msl3y
提出日時 2022-11-25 23:43:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,096 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-10-02 06:12:40
合計ジャッジ時間 2,187 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
68,960 KB
testcase_01 AC 57 ms
68,568 KB
testcase_02 AC 58 ms
68,648 KB
testcase_03 AC 58 ms
68,440 KB
testcase_04 AC 61 ms
69,336 KB
testcase_05 AC 64 ms
69,336 KB
testcase_06 AC 99 ms
81,624 KB
testcase_07 AC 126 ms
86,096 KB
testcase_08 AC 127 ms
85,848 KB
testcase_09 AC 126 ms
85,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = [0]*N
S = N*(N+1)//2
t = S
print('?', 1, N-1, flush=True)
ans[-1] = S-int(input())
for i in range(N-2):
    print('?', i+2, N, flush=True)
    ans[i] = S-int(input())
    S -= ans[i]
ans[-2] = S-ans[-1]
print('!', *ans, flush=True)
0