結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
89,576 KB
testcase_01 AC 296 ms
89,484 KB
testcase_02 AC 311 ms
89,696 KB
testcase_03 AC 312 ms
89,952 KB
testcase_04 AC 336 ms
89,252 KB
testcase_05 AC 299 ms
88,800 KB
testcase_06 AC 308 ms
89,184 KB
testcase_07 AC 329 ms
89,576 KB
testcase_08 AC 297 ms
89,320 KB
testcase_09 AC 293 ms
89,632 KB
testcase_10 AC 294 ms
90,108 KB
testcase_11 AC 326 ms
89,192 KB
testcase_12 AC 293 ms
89,472 KB
testcase_13 AC 292 ms
89,800 KB
testcase_14 AC 297 ms
89,744 KB
testcase_15 AC 327 ms
89,320 KB
testcase_16 AC 298 ms
89,576 KB
testcase_17 AC 295 ms
90,056 KB
testcase_18 AC 326 ms
89,440 KB
testcase_19 AC 296 ms
89,056 KB
testcase_20 AC 298 ms
89,576 KB
testcase_21 AC 294 ms
89,448 KB
testcase_22 AC 328 ms
89,588 KB
testcase_23 AC 297 ms
89,064 KB
testcase_24 AC 297 ms
89,320 KB
testcase_25 AC 300 ms
89,448 KB
testcase_26 AC 298 ms
89,412 KB
testcase_27 AC 302 ms
89,704 KB
testcase_28 AC 297 ms
89,576 KB
testcase_29 AC 322 ms
90,076 KB
testcase_30 AC 298 ms
89,704 KB
testcase_31 AC 306 ms
89,652 KB
testcase_32 AC 298 ms
90,216 KB
testcase_33 AC 324 ms
89,576 KB
testcase_34 AC 299 ms
89,652 KB
testcase_35 AC 298 ms
89,704 KB
testcase_36 AC 330 ms
89,440 KB
testcase_37 AC 299 ms
89,576 KB
testcase_38 AC 295 ms
89,576 KB
testcase_39 AC 299 ms
89,704 KB
testcase_40 AC 333 ms
89,404 KB
testcase_41 AC 301 ms
89,320 KB
testcase_42 AC 299 ms
89,576 KB
testcase_43 AC 321 ms
89,320 KB
testcase_44 AC 309 ms
89,492 KB
testcase_45 AC 303 ms
89,604 KB
testcase_46 AC 298 ms
89,656 KB
testcase_47 AC 335 ms
89,696 KB
testcase_48 AC 294 ms
89,696 KB
testcase_49 AC 297 ms
89,568 KB
testcase_50 AC 296 ms
89,280 KB
testcase_51 AC 296 ms
88,928 KB
testcase_52 AC 293 ms
89,696 KB
testcase_53 AC 295 ms
89,184 KB
testcase_54 AC 327 ms
89,568 KB
testcase_55 AC 296 ms
89,708 KB
testcase_56 AC 297 ms
89,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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