結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー ra5anchorra5anchor
提出日時 2024-12-14 20:54:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 89,408 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-14 20:55:14
合計ジャッジ時間 19,753 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
87,776 KB
testcase_01 AC 290 ms
87,204 KB
testcase_02 AC 282 ms
87,980 KB
testcase_03 AC 286 ms
89,360 KB
testcase_04 AC 280 ms
87,184 KB
testcase_05 AC 279 ms
88,568 KB
testcase_06 AC 281 ms
89,016 KB
testcase_07 AC 273 ms
88,316 KB
testcase_08 AC 294 ms
88,428 KB
testcase_09 AC 273 ms
87,452 KB
testcase_10 AC 273 ms
88,120 KB
testcase_11 AC 276 ms
87,912 KB
testcase_12 AC 303 ms
88,360 KB
testcase_13 AC 274 ms
89,408 KB
testcase_14 AC 274 ms
88,484 KB
testcase_15 AC 270 ms
88,180 KB
testcase_16 AC 284 ms
87,444 KB
testcase_17 AC 270 ms
88,696 KB
testcase_18 AC 268 ms
88,256 KB
testcase_19 AC 274 ms
88,024 KB
testcase_20 AC 289 ms
87,856 KB
testcase_21 AC 272 ms
88,372 KB
testcase_22 AC 276 ms
87,944 KB
testcase_23 AC 270 ms
88,752 KB
testcase_24 AC 290 ms
87,524 KB
testcase_25 AC 276 ms
88,128 KB
testcase_26 AC 276 ms
87,716 KB
testcase_27 AC 275 ms
88,548 KB
testcase_28 AC 293 ms
88,200 KB
testcase_29 AC 273 ms
87,940 KB
testcase_30 AC 272 ms
89,208 KB
testcase_31 AC 275 ms
88,304 KB
testcase_32 AC 289 ms
88,496 KB
testcase_33 AC 269 ms
88,884 KB
testcase_34 AC 272 ms
87,640 KB
testcase_35 AC 271 ms
88,300 KB
testcase_36 AC 290 ms
88,856 KB
testcase_37 AC 271 ms
89,328 KB
testcase_38 AC 271 ms
87,504 KB
testcase_39 AC 280 ms
88,104 KB
testcase_40 AC 306 ms
88,576 KB
testcase_41 AC 273 ms
88,568 KB
testcase_42 AC 274 ms
87,852 KB
testcase_43 AC 277 ms
87,896 KB
testcase_44 AC 275 ms
88,532 KB
testcase_45 AC 275 ms
88,244 KB
testcase_46 AC 276 ms
88,000 KB
testcase_47 AC 288 ms
88,240 KB
testcase_48 AC 270 ms
87,880 KB
testcase_49 AC 275 ms
88,672 KB
testcase_50 AC 274 ms
88,620 KB
testcase_51 AC 287 ms
89,000 KB
testcase_52 AC 274 ms
89,204 KB
testcase_53 AC 270 ms
88,552 KB
testcase_54 AC 276 ms
88,412 KB
testcase_55 AC 288 ms
89,404 KB
testcase_56 AC 272 ms
88,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
small = []
large = []
for i in range(N//2):
    l1 = 2*i+1
    l2 = 2*i+2
    r = N
    print(f'? {l1} {r} {l2} {r}')
    x = int(input())
    if x == 1:
        small.append(l1-1)
        large.append(l2-1)
    else:
        small.append(l2-1)
        large.append(l1-1)
imin = small[0]
for item in small[1:]:
    l1 = imin
    l2 = item
    print(f'? {l1+1} {l1+1} {l2+1} {l2+1}')
    x = int(input())
    if x == 0:
        imin = item

imax = large[0]
for item in large[1:]:
    l1 = imax
    l2 = item
    print(f'? {l1+1} {N} {l2+1} {N}')
    x = int(input())
    if x == 1:
        imax = item
print(f'! {imin+1} {imin+1} {imax+1} {N}')
0