結果

問題 No.2124 Guess the Permutation
ユーザー hir355hir355
提出日時 2022-11-18 21:40:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 87,804 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 02:04:37
合計ジャッジ時間 1,832 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
68,304 KB
testcase_01 AC 54 ms
69,576 KB
testcase_02 AC 56 ms
69,168 KB
testcase_03 AC 55 ms
69,000 KB
testcase_04 AC 58 ms
69,552 KB
testcase_05 AC 64 ms
69,488 KB
testcase_06 AC 101 ms
83,532 KB
testcase_07 AC 125 ms
87,556 KB
testcase_08 AC 124 ms
86,936 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = 0
a = [0] * n
b = [0] * (n - 1)
for i in range(n - 1):
    print('?', i + 1, i + 2)
    b[i] = int(input())
for i in range(1, n + 1):
    a[0] = i
    for j in range(n - 1):
        a[j + 1] = b[j] - a[j]
        if a[j + 1] <= 0 or a[j + 1] > n:
            break
    else:
        if len(set(a)) == n:
            print('!', *a)
            break
0