結果

問題 No.905 Sorted?
ユーザー tails1434tails1434
提出日時 2019-12-25 21:11:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 94,288 KB
最終ジャッジ日時 2024-09-25 11:56:41
合計ジャッジ時間 6,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,956 KB
testcase_01 AC 41 ms
52,808 KB
testcase_02 AC 40 ms
52,916 KB
testcase_03 AC 41 ms
54,272 KB
testcase_04 AC 40 ms
52,616 KB
testcase_05 AC 57 ms
66,040 KB
testcase_06 AC 50 ms
62,092 KB
testcase_07 AC 69 ms
71,356 KB
testcase_08 AC 339 ms
84,140 KB
testcase_09 AC 259 ms
82,112 KB
testcase_10 AC 318 ms
92,928 KB
testcase_11 AC 334 ms
87,608 KB
testcase_12 AC 365 ms
86,040 KB
testcase_13 AC 323 ms
94,288 KB
testcase_14 AC 338 ms
94,220 KB
testcase_15 AC 348 ms
90,696 KB
testcase_16 AC 341 ms
91,372 KB
testcase_17 AC 346 ms
91,232 KB
testcase_18 AC 277 ms
91,064 KB
testcase_19 AC 43 ms
53,356 KB
testcase_20 AC 37 ms
53,668 KB
testcase_21 AC 38 ms
53,276 KB
testcase_22 AC 37 ms
52,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = list(map(int, input().split()))
    Q = int(input())
    up = [0] * N
    down = [0] * N
    cnt = 0
    for i in range(N-1):
        if A[i] <= A[i+1]:
            cnt += 1
            up[i+1] = cnt
        else:
            cnt = 0

    cnt = 0
    for i in range(N-1):
        if A[i] >= A[i+1]:
            cnt += 1
            down[i+1] = cnt
        else:
            cnt = 0

    for _ in range(Q):
        l, r = map(int, input().split())
        f = up[r] - up[l]
        g = down[r] - down[l]
        ans = [0,0]
        if f == r - l:
            ans[0] = 1
        if g == r - l:
            ans[1] = 1
        print(*ans)

if __name__ == "__main__":
    main()
0