結果

問題 No.2124 Guess the Permutation
ユーザー tamatotamato
提出日時 2022-11-18 21:29:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 83,044 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 01:54:25
合計ジャッジ時間 1,804 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
68,428 KB
testcase_01 AC 57 ms
69,520 KB
testcase_02 AC 56 ms
69,104 KB
testcase_03 AC 57 ms
69,324 KB
testcase_04 AC 59 ms
69,820 KB
testcase_05 AC 63 ms
69,328 KB
testcase_06 AC 94 ms
80,428 KB
testcase_07 AC 115 ms
83,044 KB
testcase_08 AC 116 ms
81,824 KB
testcase_09 AC 115 ms
82,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())

    x = N * (N + 1) // 2
    P = []
    for r in range(N - 1, 1, -1):
        print("?", 1, r)
        sys.stdout.flush()
        y = int(input())
        P.append(x - y)
        x = y
    print("?", 2, 3)
    sys.stdout.flush()
    y = int(input())
    P.append(y - P[-1])
    P.append((N + 1) * N // 2 - sum(P))
    P.append("!")
    P.reverse()
    print(*P)
    sys.stdout.flush()
    exit()


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