結果

問題 No.1959 Prefix MinMax
ユーザー 👑 tute7627tute7627
提出日時 2022-05-14 18:28:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,976 KB
平均クエリ数 97.97
最終ジャッジ日時 2024-09-20 16:29:22
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
27,464 KB
testcase_01 AC 50 ms
27,328 KB
testcase_02 AC 50 ms
27,464 KB
testcase_03 AC 52 ms
27,592 KB
testcase_04 AC 51 ms
27,592 KB
testcase_05 AC 50 ms
27,208 KB
testcase_06 AC 52 ms
27,408 KB
testcase_07 AC 223 ms
27,464 KB
testcase_08 AC 228 ms
27,848 KB
testcase_09 AC 230 ms
27,464 KB
testcase_10 AC 227 ms
27,720 KB
testcase_11 AC 231 ms
27,720 KB
testcase_12 AC 230 ms
27,592 KB
testcase_13 AC 235 ms
27,336 KB
testcase_14 AC 237 ms
27,464 KB
testcase_15 AC 237 ms
27,464 KB
testcase_16 AC 228 ms
27,592 KB
testcase_17 AC 228 ms
27,848 KB
testcase_18 AC 227 ms
27,336 KB
testcase_19 AC 234 ms
27,464 KB
testcase_20 AC 233 ms
27,592 KB
testcase_21 AC 237 ms
27,208 KB
testcase_22 AC 235 ms
27,976 KB
testcase_23 AC 247 ms
27,464 KB
testcase_24 AC 232 ms
27,592 KB
testcase_25 AC 239 ms
27,848 KB
testcase_26 AC 234 ms
27,592 KB
testcase_27 AC 235 ms
27,592 KB
testcase_28 AC 224 ms
27,592 KB
testcase_29 AC 234 ms
27,464 KB
testcase_30 AC 227 ms
27,464 KB
testcase_31 AC 237 ms
27,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
  N = int(input())
  P = [0] * N
  for q in range(10):
    print("?", end = " ")
    A = [0] * (N - 1)
    for i in range(N - 1):
      if i % 2 == q % 2:
        A[i] = 1
      if i + 1 != N - 1:
        print(A[i], end = " ")
      else:
        print(A[i], flush = True)
    B = list(map(int, input().split()))
    P[0] = B[0]
    for i in range(N - 1):
      if B[i] != B[i + 1]:
        P[i + 1] = B[i + 1]
  print("!", end = " ")
  for i in range(N):
    if i + 1 != N:
      print(P[i], end = " ")
    else:
      print(P[i], flush = True)

  
0