結果

問題 No.905 Sorted?
ユーザー lloyzlloyz
提出日時 2022-05-02 00:50:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 619 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 94,584 KB
最終ジャッジ日時 2024-07-01 03:07:05
合計ジャッジ時間 6,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,632 KB
testcase_01 AC 38 ms
52,784 KB
testcase_02 AC 38 ms
54,136 KB
testcase_03 AC 38 ms
52,208 KB
testcase_04 AC 38 ms
52,884 KB
testcase_05 AC 59 ms
66,208 KB
testcase_06 AC 49 ms
63,028 KB
testcase_07 AC 69 ms
72,724 KB
testcase_08 AC 327 ms
84,104 KB
testcase_09 AC 252 ms
82,100 KB
testcase_10 AC 304 ms
92,852 KB
testcase_11 AC 325 ms
87,960 KB
testcase_12 AC 354 ms
86,492 KB
testcase_13 AC 321 ms
94,256 KB
testcase_14 AC 333 ms
94,584 KB
testcase_15 AC 351 ms
90,740 KB
testcase_16 AC 347 ms
91,440 KB
testcase_17 AC 349 ms
91,064 KB
testcase_18 AC 291 ms
91,252 KB
testcase_19 AC 36 ms
52,424 KB
testcase_20 AC 37 ms
52,244 KB
testcase_21 AC 38 ms
52,632 KB
testcase_22 AC 37 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

U = [0 for _ in range(n)]
L = [0 for _ in range(n)]
U[0] = L[0] = 1
u = l = 1
for i in range(1, n):
    if A[i] >= A[i - 1]:
        U[i] = 1
        u += 1
    else:
        U[i] -= u
        u = 0
    if A[i] <= A[i - 1]:
        L[i] = 1
        l += 1
    else:
        L[i] -= l
        l = 0
for i in range(1, n):
    U[i] += U[i - 1]
    L[i] += L[i - 1]

q = int(input())
for _ in range(q):
    l, r = map(int, input().split())
    ANS = [0, 0]
    if U[r] - U[l] == r - l:
        ANS[0] = 1
    if L[r] - L[l] == r - l:
        ANS[1] = 1
    print(*ANS)
0