結果

問題 No.905 Sorted?
ユーザー yansi819yansi819
提出日時 2024-05-12 12:09:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 94,732 KB
最終ジャッジ日時 2024-05-12 12:09:57
合計ジャッジ時間 5,976 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,028 KB
testcase_01 AC 40 ms
54,040 KB
testcase_02 AC 36 ms
52,788 KB
testcase_03 AC 36 ms
53,184 KB
testcase_04 AC 37 ms
53,748 KB
testcase_05 AC 56 ms
66,352 KB
testcase_06 AC 49 ms
64,896 KB
testcase_07 AC 96 ms
73,084 KB
testcase_08 AC 318 ms
84,228 KB
testcase_09 AC 239 ms
82,536 KB
testcase_10 AC 287 ms
93,288 KB
testcase_11 AC 336 ms
87,672 KB
testcase_12 AC 340 ms
86,128 KB
testcase_13 AC 310 ms
93,936 KB
testcase_14 AC 324 ms
94,732 KB
testcase_15 AC 348 ms
90,576 KB
testcase_16 AC 347 ms
91,500 KB
testcase_17 AC 337 ms
91,400 KB
testcase_18 AC 295 ms
91,304 KB
testcase_19 AC 35 ms
52,608 KB
testcase_20 AC 35 ms
52,276 KB
testcase_21 AC 36 ms
53,196 KB
testcase_22 AC 34 ms
53,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

SU = [0] * (N + 1)
for i in range(N - 1):
    if A[i] <= A[i + 1]:
        SU[i + 1] = 1
for i in range(1, N):
    SU[i] += SU[i - 1]
SD = [0] * (N + 1)
for i in range(N - 1):
    if A[i] >= A[i + 1]:
        SD[i + 1] = 1
for i in range(1, N):
    SD[i] += SD[i - 1]
#print(SU, SD)
Q = int(input())
for _ in range(Q):
    l, r = map(int, input().split())
    ans1 = 1 if SU[r] - SU[l] == r - l else 0
    ans2 = 1 if SD[r] - SD[l] == r - l else 0
    print(ans1, ans2)
0