結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
89,472 KB
testcase_01 AC 294 ms
89,440 KB
testcase_02 AC 313 ms
90,080 KB
testcase_03 AC 303 ms
89,432 KB
testcase_04 AC 313 ms
89,512 KB
testcase_05 AC 302 ms
90,080 KB
testcase_06 AC 304 ms
89,312 KB
testcase_07 AC 297 ms
90,216 KB
testcase_08 AC 304 ms
89,576 KB
testcase_09 AC 295 ms
90,328 KB
testcase_10 AC 297 ms
89,708 KB
testcase_11 AC 303 ms
90,216 KB
testcase_12 AC 293 ms
90,048 KB
testcase_13 AC 295 ms
90,344 KB
testcase_14 AC 286 ms
89,832 KB
testcase_15 AC 302 ms
90,144 KB
testcase_16 AC 295 ms
89,392 KB
testcase_17 AC 293 ms
89,320 KB
testcase_18 AC 291 ms
89,960 KB
testcase_19 AC 300 ms
90,144 KB
testcase_20 AC 302 ms
90,188 KB
testcase_21 AC 296 ms
89,628 KB
testcase_22 AC 295 ms
89,708 KB
testcase_23 AC 297 ms
89,968 KB
testcase_24 AC 289 ms
90,380 KB
testcase_25 AC 291 ms
89,832 KB
testcase_26 AC 303 ms
90,088 KB
testcase_27 AC 297 ms
89,376 KB
testcase_28 AC 297 ms
89,448 KB
testcase_29 AC 292 ms
89,632 KB
testcase_30 AC 292 ms
89,840 KB
testcase_31 AC 292 ms
89,320 KB
testcase_32 AC 285 ms
89,960 KB
testcase_33 AC 301 ms
90,180 KB
testcase_34 AC 297 ms
89,192 KB
testcase_35 AC 292 ms
89,448 KB
testcase_36 AC 290 ms
89,952 KB
testcase_37 AC 296 ms
89,576 KB
testcase_38 AC 282 ms
89,380 KB
testcase_39 AC 298 ms
89,704 KB
testcase_40 AC 293 ms
89,832 KB
testcase_41 AC 290 ms
89,576 KB
testcase_42 AC 293 ms
89,832 KB
testcase_43 AC 294 ms
90,120 KB
testcase_44 AC 288 ms
89,624 KB
testcase_45 AC 300 ms
89,632 KB
testcase_46 AC 292 ms
89,436 KB
testcase_47 AC 287 ms
89,952 KB
testcase_48 AC 295 ms
89,824 KB
testcase_49 AC 300 ms
89,640 KB
testcase_50 AC 296 ms
89,660 KB
testcase_51 AC 293 ms
89,728 KB
testcase_52 AC 292 ms
90,160 KB
testcase_53 AC 283 ms
89,604 KB
testcase_54 AC 289 ms
89,188 KB
testcase_55 AC 295 ms
89,696 KB
testcase_56 AC 288 ms
89,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in range(1,n//2):
  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