結果

問題 No.2124 Guess the Permutation
ユーザー H20H20
提出日時 2022-11-18 21:30:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 86,256 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 01:55:27
合計ジャッジ時間 1,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
69,216 KB
testcase_01 AC 59 ms
68,696 KB
testcase_02 AC 57 ms
68,312 KB
testcase_03 AC 56 ms
68,440 KB
testcase_04 AC 61 ms
68,568 KB
testcase_05 AC 66 ms
69,416 KB
testcase_06 AC 102 ms
82,136 KB
testcase_07 AC 128 ms
86,256 KB
testcase_08 AC 131 ms
86,232 KB
testcase_09 AC 134 ms
85,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print('?',2,N,flush=True)
ANS = [N*(N+1)//2 - int(input())]
for i in range(1,N-1):
    print('?',i,i+1,flush=True)
    ANS.append(int(input())-ANS[-1])
ANS.append(N*(N+1)//2-sum(ANS))
print('!',*ANS)
0