結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー loop0919loop0919
提出日時 2024-11-25 01:15:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 91,008 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-01 23:34:08
合計ジャッジ時間 19,755 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
89,824 KB
testcase_01 AC 279 ms
90,336 KB
testcase_02 AC 293 ms
90,336 KB
testcase_03 AC 291 ms
90,336 KB
testcase_04 AC 284 ms
89,952 KB
testcase_05 AC 296 ms
90,312 KB
testcase_06 AC 292 ms
90,064 KB
testcase_07 AC 279 ms
90,216 KB
testcase_08 AC 278 ms
89,960 KB
testcase_09 AC 288 ms
89,960 KB
testcase_10 AC 281 ms
89,320 KB
testcase_11 AC 303 ms
90,216 KB
testcase_12 AC 291 ms
90,728 KB
testcase_13 AC 276 ms
90,472 KB
testcase_14 AC 287 ms
89,576 KB
testcase_15 AC 309 ms
90,344 KB
testcase_16 AC 281 ms
90,396 KB
testcase_17 AC 278 ms
90,344 KB
testcase_18 AC 287 ms
90,088 KB
testcase_19 AC 278 ms
90,472 KB
testcase_20 AC 277 ms
89,960 KB
testcase_21 AC 278 ms
90,144 KB
testcase_22 AC 285 ms
90,088 KB
testcase_23 AC 278 ms
90,600 KB
testcase_24 AC 279 ms
90,208 KB
testcase_25 AC 285 ms
90,088 KB
testcase_26 AC 279 ms
90,856 KB
testcase_27 AC 278 ms
89,960 KB
testcase_28 AC 294 ms
91,008 KB
testcase_29 AC 318 ms
89,832 KB
testcase_30 AC 297 ms
89,832 KB
testcase_31 AC 289 ms
90,472 KB
testcase_32 AC 281 ms
90,376 KB
testcase_33 AC 279 ms
89,804 KB
testcase_34 AC 281 ms
90,472 KB
testcase_35 AC 280 ms
90,016 KB
testcase_36 AC 280 ms
90,212 KB
testcase_37 AC 278 ms
90,216 KB
testcase_38 AC 278 ms
89,704 KB
testcase_39 AC 279 ms
90,088 KB
testcase_40 AC 279 ms
90,472 KB
testcase_41 AC 279 ms
90,728 KB
testcase_42 AC 280 ms
89,792 KB
testcase_43 AC 284 ms
90,472 KB
testcase_44 AC 280 ms
89,696 KB
testcase_45 AC 314 ms
90,216 KB
testcase_46 AC 281 ms
90,200 KB
testcase_47 AC 320 ms
90,464 KB
testcase_48 AC 316 ms
90,208 KB
testcase_49 AC 280 ms
90,080 KB
testcase_50 AC 277 ms
90,080 KB
testcase_51 AC 275 ms
90,080 KB
testcase_52 AC 277 ms
89,952 KB
testcase_53 AC 277 ms
89,952 KB
testcase_54 AC 279 ms
89,952 KB
testcase_55 AC 279 ms
90,240 KB
testcase_56 AC 276 ms
90,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())

smaller, larger = [], []

for i in range(0, N, 2):
    print("?", i + 1, N, i + 2, N)
    X = int(input())

    if X == 1:
        smaller.append(i)
        larger.append(i + 1)
    elif X == 0:
        smaller.append(i + 1)
        larger.append(i)
    else:
        exit()

smallest = smaller[0]
for i in range(1, len(smaller)):
    print("?", smallest + 1, smallest + 1, smaller[i] + 1, smaller[i] + 1)
    X = int(input())

    if X == 0:
        smallest = smaller[i]
    elif X == 1:
        pass
    else:
        exit()

largest = larger[0]
for i in range(1, len(larger)):
    print("?", largest + 1, N, larger[i] + 1, N)
    X = int(input())

    if X == 1:
        largest = larger[i]
    elif X == 0:
        pass
    else:
        exit()

print("!", smallest + 1, smallest + 1, largest + 1, N)
0