結果

問題 No.2124 Guess the Permutation
ユーザー ninja-kidninja-kid
提出日時 2022-11-28 16:38:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 83,800 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-10-05 15:32:42
合計ジャッジ時間 1,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
68,576 KB
testcase_01 AC 52 ms
68,184 KB
testcase_02 AC 52 ms
68,568 KB
testcase_03 AC 55 ms
68,440 KB
testcase_04 AC 58 ms
68,696 KB
testcase_05 AC 66 ms
68,952 KB
testcase_06 AC 87 ms
77,784 KB
testcase_07 AC 115 ms
83,672 KB
testcase_08 AC 113 ms
83,800 KB
testcase_09 AC 117 ms
83,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
base = (N + 1) * N // 2
ans = []

def check(l, r):
    print(f"? {l} {r}", flush=True)
    ret = int(input())
    return ret
    
first2 = check(2, N)
first = base - first2
for r in range(N - 1, 1, -1):
    res = check(1, r)
    val = base - res
    ans.append(str(val))
    base = res
ans.append(str(base - first))
ans.append(str(first))
result = ' '.join(ans[::-1])
print(f"! {result}")
0