結果

問題 No.2124 Guess the Permutation
ユーザー kept1994kept1994
提出日時 2022-11-19 01:28:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 91,096 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 05:31:17
合計ジャッジ時間 2,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
80,352 KB
testcase_01 AC 77 ms
80,216 KB
testcase_02 AC 73 ms
80,344 KB
testcase_03 AC 74 ms
80,472 KB
testcase_04 AC 76 ms
80,600 KB
testcase_05 AC 78 ms
80,984 KB
testcase_06 AC 109 ms
84,824 KB
testcase_07 AC 131 ms
91,096 KB
testcase_08 AC 130 ms
90,072 KB
testcase_09 AC 134 ms
90,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import string

def main():
    ans = []
    N = int(input())
    tot = (1 + N) * N // 2
    print(f"? 2 {N}", flush=True)
    res = int(input())
    ans.append(str(tot - res))
    acc = tot - res
    for i in range(1, N - 1):
        print(f"? {i} {i + 1}", flush=True)
        res = int(input())
        r = res - int(ans[-1])
        ans.append(str(r))
        acc += r
    ans.append(str(tot - acc))
    l = " ".join(ans)
    print(f"! {l}")
    return

if __name__ == '__main__':
    main()
0