結果

問題 No.2124 Guess the Permutation
ユーザー roarisroaris
提出日時 2022-11-18 22:58:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 276 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 83,416 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 03:26:24
合計ジャッジ時間 2,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
69,088 KB
testcase_01 AC 55 ms
68,568 KB
testcase_02 AC 56 ms
68,568 KB
testcase_03 AC 59 ms
68,568 KB
testcase_04 AC 62 ms
68,728 KB
testcase_05 AC 64 ms
68,952 KB
testcase_06 AC 92 ms
77,912 KB
testcase_07 AC 122 ms
83,416 KB
testcase_08 AC 121 ms
82,904 KB
testcase_09 AC 119 ms
83,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

N = int(input())
ans = [0]*N

print(f'? 2 {N}')
res = int(input())
ans[0] = N*(N+1)//2-res

for i in range(N-2):
    print(f'? {1+i} {2+i}')
    res = int(input())
    ans[1+i] = res-ans[i]

ans[-1] = N*(N+1)//2-sum(ans)
s = ' '.join(map(str, ans))
print(f'! {s}')
0