結果

問題 No.2978 Lexicographically Smallest and Largest Subarray
ユーザー loop0919loop0919
提出日時 2024-11-25 01:58:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,464 KB
平均クエリ数 1499.00
最終ジャッジ日時 2024-12-01 23:34:25
合計ジャッジ時間 21,966 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
89,312 KB
testcase_01 AC 318 ms
90,464 KB
testcase_02 AC 333 ms
90,080 KB
testcase_03 AC 331 ms
89,056 KB
testcase_04 AC 325 ms
89,696 KB
testcase_05 AC 315 ms
90,080 KB
testcase_06 AC 327 ms
89,696 KB
testcase_07 AC 320 ms
89,960 KB
testcase_08 AC 316 ms
89,320 KB
testcase_09 AC 320 ms
89,576 KB
testcase_10 AC 324 ms
89,960 KB
testcase_11 AC 322 ms
90,088 KB
testcase_12 AC 320 ms
89,576 KB
testcase_13 AC 320 ms
89,192 KB
testcase_14 AC 321 ms
89,704 KB
testcase_15 AC 318 ms
89,704 KB
testcase_16 AC 322 ms
89,320 KB
testcase_17 AC 319 ms
89,448 KB
testcase_18 AC 319 ms
89,448 KB
testcase_19 AC 320 ms
89,576 KB
testcase_20 AC 323 ms
89,576 KB
testcase_21 AC 317 ms
89,832 KB
testcase_22 AC 319 ms
89,696 KB
testcase_23 AC 319 ms
89,960 KB
testcase_24 AC 321 ms
89,448 KB
testcase_25 AC 322 ms
89,448 KB
testcase_26 AC 315 ms
89,704 KB
testcase_27 AC 321 ms
89,960 KB
testcase_28 AC 316 ms
89,704 KB
testcase_29 AC 317 ms
89,832 KB
testcase_30 AC 319 ms
89,832 KB
testcase_31 AC 321 ms
89,480 KB
testcase_32 AC 315 ms
89,192 KB
testcase_33 AC 322 ms
89,960 KB
testcase_34 AC 322 ms
89,832 KB
testcase_35 AC 318 ms
89,696 KB
testcase_36 AC 321 ms
90,080 KB
testcase_37 AC 323 ms
89,832 KB
testcase_38 AC 320 ms
89,576 KB
testcase_39 AC 319 ms
90,088 KB
testcase_40 AC 319 ms
90,088 KB
testcase_41 AC 327 ms
89,832 KB
testcase_42 AC 323 ms
89,832 KB
testcase_43 AC 326 ms
90,216 KB
testcase_44 AC 322 ms
89,832 KB
testcase_45 AC 318 ms
89,448 KB
testcase_46 AC 318 ms
89,824 KB
testcase_47 AC 318 ms
89,824 KB
testcase_48 AC 318 ms
90,080 KB
testcase_49 AC 320 ms
89,824 KB
testcase_50 AC 319 ms
89,824 KB
testcase_51 AC 323 ms
89,824 KB
testcase_52 AC 321 ms
89,312 KB
testcase_53 AC 319 ms
90,280 KB
testcase_54 AC 319 ms
89,696 KB
testcase_55 AC 329 ms
90,208 KB
testcase_56 AC 328 ms
89,440 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(1, 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(1, 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