結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,080 KB
testcase_01 AC 53 ms
68,440 KB
testcase_02 AC 53 ms
68,824 KB
testcase_03 AC 58 ms
68,824 KB
testcase_04 AC 60 ms
69,080 KB
testcase_05 AC 62 ms
69,976 KB
testcase_06 AC 92 ms
82,648 KB
testcase_07 AC 139 ms
87,768 KB
testcase_08 AC 142 ms
87,768 KB
testcase_09 AC 123 ms
87,344 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] = sum(range(1, N + 1)) - 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