結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー むつあるむつある
提出日時 2024-12-02 12:26:45
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 297 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 94,288 KB
平均クエリ数 1043.95
最終ジャッジ日時 2024-12-02 12:27:07
合計ジャッジ時間 19,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 288 ms
90,188 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 340 ms
88,936 KB
testcase_11 RE -
testcase_12 AC 284 ms
89,448 KB
testcase_13 RE -
testcase_14 AC 315 ms
89,960 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 284 ms
89,832 KB
testcase_21 RE -
testcase_22 AC 329 ms
89,856 KB
testcase_23 AC 304 ms
89,952 KB
testcase_24 RE -
testcase_25 AC 281 ms
89,960 KB
testcase_26 RE -
testcase_27 AC 310 ms
89,576 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 313 ms
89,704 KB
testcase_34 AC 286 ms
89,748 KB
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 286 ms
89,696 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 AC 314 ms
89,648 KB
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 WA -
testcase_55 RE -
testcase_56 RE -
権限があれば一括ダウンロードができます

ソースコード

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.append([2*i+1+v^1,2*i+1+v])
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