結果

問題 No.2124 Guess the Permutation
ユーザー dangodango
提出日時 2023-06-25 13:13:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 87,256 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-07-02 13:03:28
合計ジャッジ時間 2,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
68,552 KB
testcase_01 AC 52 ms
68,560 KB
testcase_02 AC 53 ms
68,568 KB
testcase_03 AC 57 ms
69,060 KB
testcase_04 AC 66 ms
68,952 KB
testcase_05 AC 65 ms
69,208 KB
testcase_06 AC 103 ms
81,624 KB
testcase_07 AC 142 ms
87,000 KB
testcase_08 AC 121 ms
86,872 KB
testcase_09 AC 114 ms
87,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
__sum__ = sum(range(1, N + 1))
ans = [0] * N
for i in range(N - 2):
    print(f"? {i + 2} {N}")
    A = int(input())
    ans[i] = __sum__ - A
    __sum__ = A
print(f"? 1 {N - 1}")
ans[N - 1] = (1 + N) * N // 2 - int(input())
ans[N - 2] = __sum__ - ans[N - 1]
print("! ", end="")
for i in range(N):
    print(ans[i], end="")
    if i + 1 != N:
        print(" ", end="")
print()
0