結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
89,432 KB
testcase_01 AC 286 ms
89,952 KB
testcase_02 AC 292 ms
90,440 KB
testcase_03 AC 294 ms
90,360 KB
testcase_04 AC 293 ms
89,440 KB
testcase_05 AC 284 ms
90,208 KB
testcase_06 AC 285 ms
89,952 KB
testcase_07 AC 280 ms
90,216 KB
testcase_08 AC 276 ms
89,960 KB
testcase_09 AC 282 ms
89,576 KB
testcase_10 AC 301 ms
89,480 KB
testcase_11 AC 276 ms
91,140 KB
testcase_12 AC 312 ms
89,960 KB
testcase_13 AC 303 ms
90,728 KB
testcase_14 AC 320 ms
89,576 KB
testcase_15 AC 315 ms
90,728 KB
testcase_16 AC 286 ms
90,472 KB
testcase_17 AC 278 ms
89,576 KB
testcase_18 AC 281 ms
90,344 KB
testcase_19 AC 300 ms
90,472 KB
testcase_20 AC 320 ms
90,144 KB
testcase_21 AC 320 ms
90,240 KB
testcase_22 AC 278 ms
89,448 KB
testcase_23 AC 281 ms
90,472 KB
testcase_24 AC 280 ms
89,960 KB
testcase_25 AC 295 ms
90,600 KB
testcase_26 AC 278 ms
90,440 KB
testcase_27 AC 278 ms
90,664 KB
testcase_28 AC 280 ms
89,832 KB
testcase_29 AC 279 ms
89,864 KB
testcase_30 AC 296 ms
90,344 KB
testcase_31 AC 299 ms
89,448 KB
testcase_32 AC 274 ms
89,704 KB
testcase_33 AC 280 ms
89,832 KB
testcase_34 AC 289 ms
89,632 KB
testcase_35 AC 275 ms
89,704 KB
testcase_36 AC 274 ms
89,696 KB
testcase_37 AC 274 ms
90,312 KB
testcase_38 AC 276 ms
90,216 KB
testcase_39 AC 279 ms
89,448 KB
testcase_40 AC 309 ms
89,448 KB
testcase_41 AC 281 ms
90,344 KB
testcase_42 AC 275 ms
90,472 KB
testcase_43 AC 313 ms
90,216 KB
testcase_44 AC 277 ms
89,448 KB
testcase_45 AC 276 ms
89,960 KB
testcase_46 AC 299 ms
90,464 KB
testcase_47 AC 278 ms
89,824 KB
testcase_48 AC 277 ms
89,824 KB
testcase_49 AC 280 ms
90,080 KB
testcase_50 AC 280 ms
90,208 KB
testcase_51 AC 280 ms
90,464 KB
testcase_52 AC 288 ms
89,568 KB
testcase_53 AC 280 ms
89,816 KB
testcase_54 AC 279 ms
89,568 KB
testcase_55 AC 277 ms
90,464 KB
testcase_56 AC 275 ms
89,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

smaller, larger = [], []

for i in range(1, N + 1, 2):
    print("?", i, N, i + 1, 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(len(smaller)):
    print("?", smallest, smallest, smaller[i], smaller[i])
    X = int(input())

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

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

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

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