結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー PNJPNJ
提出日時 2024-12-04 07:00:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 90,700 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-04 07:01:22
合計ジャッジ時間 19,261 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 278 ms
89,776 KB
testcase_01 AC 298 ms
89,060 KB
testcase_02 AC 277 ms
89,952 KB
testcase_03 AC 285 ms
89,184 KB
testcase_04 AC 279 ms
90,308 KB
testcase_05 AC 296 ms
89,408 KB
testcase_06 AC 280 ms
89,696 KB
testcase_07 AC 268 ms
90,304 KB
testcase_08 AC 298 ms
90,256 KB
testcase_09 AC 284 ms
89,624 KB
testcase_10 AC 269 ms
89,824 KB
testcase_11 AC 268 ms
89,960 KB
testcase_12 AC 269 ms
89,752 KB
testcase_13 AC 298 ms
90,088 KB
testcase_14 AC 268 ms
89,960 KB
testcase_15 AC 266 ms
89,832 KB
testcase_16 AC 272 ms
90,216 KB
testcase_17 AC 290 ms
90,216 KB
testcase_18 AC 260 ms
90,332 KB
testcase_19 AC 265 ms
90,088 KB
testcase_20 AC 263 ms
89,788 KB
testcase_21 AC 289 ms
90,072 KB
testcase_22 AC 264 ms
90,344 KB
testcase_23 AC 264 ms
90,216 KB
testcase_24 AC 261 ms
90,492 KB
testcase_25 AC 286 ms
90,216 KB
testcase_26 AC 267 ms
89,568 KB
testcase_27 AC 265 ms
89,928 KB
testcase_28 AC 262 ms
89,740 KB
testcase_29 AC 295 ms
90,088 KB
testcase_30 AC 265 ms
89,632 KB
testcase_31 AC 261 ms
89,888 KB
testcase_32 AC 269 ms
89,832 KB
testcase_33 AC 294 ms
89,324 KB
testcase_34 AC 266 ms
89,508 KB
testcase_35 AC 264 ms
89,192 KB
testcase_36 AC 274 ms
89,300 KB
testcase_37 AC 294 ms
89,448 KB
testcase_38 AC 268 ms
90,392 KB
testcase_39 AC 270 ms
90,016 KB
testcase_40 AC 263 ms
89,704 KB
testcase_41 AC 294 ms
89,240 KB
testcase_42 AC 275 ms
89,364 KB
testcase_43 AC 267 ms
89,960 KB
testcase_44 AC 267 ms
90,344 KB
testcase_45 AC 299 ms
89,564 KB
testcase_46 AC 263 ms
90,644 KB
testcase_47 AC 266 ms
89,168 KB
testcase_48 AC 269 ms
90,700 KB
testcase_49 AC 292 ms
90,208 KB
testcase_50 AC 267 ms
90,444 KB
testcase_51 AC 271 ms
89,512 KB
testcase_52 AC 271 ms
89,640 KB
testcase_53 AC 292 ms
89,564 KB
testcase_54 AC 265 ms
89,696 KB
testcase_55 AC 285 ms
89,440 KB
testcase_56 AC 265 ms
89,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())

X = []
for i in range(1, 1000, 2):
  print('?', i, N, i + 1, N)
  f = int(input())
  if f:
    X.append((i, i + 1))
  else:
    X.append((i + 1, i))

while len(X) > 1:
  m, M = X.pop()
  mm, MM = X.pop()
  print('?', m, N, mm, N)
  f = int(input())
  if f == 0:
    m = mm
  print('?', M, N, MM, N)
  f = int(input())
  if f:
    M = MM
  X.append((m, M))

l, ll = X.pop()
print('!', l, l, ll, N)
0