結果

問題 No.905 Sorted?
ユーザー ああいいああいい
提出日時 2022-05-29 17:53:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-09-21 00:26:05
合計ジャッジ時間 6,293 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,876 KB
testcase_01 AC 40 ms
53,600 KB
testcase_02 AC 36 ms
53,840 KB
testcase_03 AC 34 ms
53,308 KB
testcase_04 AC 35 ms
52,560 KB
testcase_05 AC 77 ms
73,236 KB
testcase_06 AC 53 ms
63,872 KB
testcase_07 AC 82 ms
77,032 KB
testcase_08 AC 321 ms
85,376 KB
testcase_09 AC 243 ms
83,840 KB
testcase_10 AC 310 ms
99,072 KB
testcase_11 AC 310 ms
87,808 KB
testcase_12 AC 334 ms
86,656 KB
testcase_13 AC 315 ms
92,928 KB
testcase_14 AC 321 ms
93,180 KB
testcase_15 AC 311 ms
93,068 KB
testcase_16 AC 295 ms
89,856 KB
testcase_17 AC 311 ms
97,920 KB
testcase_18 AC 257 ms
98,180 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 36 ms
52,272 KB
testcase_22 AC 36 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
Q = int(input())
l = []
left = 0
while left < N:
    right = left + 1
    while right < N and A[right - 1] <= A[right]:
        right += 1
    l.append((left,right - 1))
    left = right
r = []
left = 0
while left < N:
    right = left + 1
    while right < N and A[right - 1] >= A[right]:
        right += 1
    r.append((left,right - 1))
    left = right
for _ in range(Q):
    s,t = map(int,input().split())
    start = 0
    end = len(l)
    while end - start > 1:
        mid = end + start >> 1
        if l[mid][0] <= s:
            start = mid
        else:
            end = mid
    a,b = l[start]
    if t <= b:
        print(1,end = " ")
    else:
        print(0,end = " ")
    start = 0
    end = len(r)
    while end - start > 1:
        mid = end + start >> 1
        if r[mid][0] <= s:
            start = mid
        else:
            end = mid
    a,b = r[start]
    if t <= b:
        print(1)
    else:
        print(0)
        
0