結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー むつあるむつある
提出日時 2024-12-02 12:19:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,344 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-02 12:19:52
合計ジャッジ時間 22,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
89,568 KB
testcase_01 AC 297 ms
90,080 KB
testcase_02 AC 312 ms
89,440 KB
testcase_03 AC 316 ms
89,448 KB
testcase_04 AC 328 ms
89,184 KB
testcase_05 AC 313 ms
89,824 KB
testcase_06 AC 312 ms
90,080 KB
testcase_07 AC 327 ms
89,976 KB
testcase_08 AC 294 ms
89,980 KB
testcase_09 AC 293 ms
90,088 KB
testcase_10 AC 297 ms
89,924 KB
testcase_11 AC 329 ms
89,980 KB
testcase_12 AC 300 ms
89,088 KB
testcase_13 AC 299 ms
89,792 KB
testcase_14 AC 326 ms
89,448 KB
testcase_15 AC 304 ms
89,380 KB
testcase_16 AC 296 ms
89,212 KB
testcase_17 AC 306 ms
89,408 KB
testcase_18 AC 331 ms
89,604 KB
testcase_19 AC 337 ms
89,704 KB
testcase_20 AC 300 ms
89,576 KB
testcase_21 AC 328 ms
89,748 KB
testcase_22 AC 295 ms
89,832 KB
testcase_23 AC 301 ms
90,100 KB
testcase_24 AC 297 ms
89,320 KB
testcase_25 AC 324 ms
89,576 KB
testcase_26 AC 300 ms
89,960 KB
testcase_27 AC 302 ms
90,028 KB
testcase_28 AC 298 ms
89,192 KB
testcase_29 AC 310 ms
89,444 KB
testcase_30 AC 296 ms
89,448 KB
testcase_31 AC 299 ms
89,704 KB
testcase_32 AC 331 ms
89,468 KB
testcase_33 AC 332 ms
89,812 KB
testcase_34 AC 329 ms
89,600 KB
testcase_35 AC 331 ms
90,344 KB
testcase_36 AC 360 ms
89,056 KB
testcase_37 AC 299 ms
89,960 KB
testcase_38 AC 298 ms
89,448 KB
testcase_39 AC 312 ms
89,704 KB
testcase_40 AC 295 ms
89,064 KB
testcase_41 AC 299 ms
89,740 KB
testcase_42 AC 297 ms
90,216 KB
testcase_43 AC 322 ms
89,832 KB
testcase_44 AC 298 ms
89,284 KB
testcase_45 AC 302 ms
89,576 KB
testcase_46 AC 298 ms
89,716 KB
testcase_47 AC 324 ms
89,952 KB
testcase_48 AC 299 ms
89,696 KB
testcase_49 AC 310 ms
89,696 KB
testcase_50 AC 327 ms
89,824 KB
testcase_51 AC 298 ms
89,616 KB
testcase_52 AC 305 ms
89,440 KB
testcase_53 AC 300 ms
89,312 KB
testcase_54 AC 330 ms
89,952 KB
testcase_55 AC 298 ms
89,176 KB
testcase_56 AC 297 ms
89,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())

x=[[],[]]
for i in range(500):
  print('?',2*i+1,n,2*i+2,n)
  v=input()=='1'
  x[v].append(2*i+2)
  x[v^1].append(2*i+1)
a=x[0][0]
b=x[1][0]

for i in range(1,500):
  p=x[0][i]
  print('?',a,a,p,p)
  if input()=='0':
    a=p
  p=x[1][i]
  print('?',b,n,p,n)
  if input()=='1':
    b=p
    
print('!',a,a,b,n)
0