結果

問題 No.905 Sorted?
ユーザー hedwig100hedwig100
提出日時 2020-04-12 13:27:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 801 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,968 KB
最終ジャッジ日時 2024-09-22 02:33:12
合計ジャッジ時間 9,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 37 ms
11,264 KB
testcase_06 AC 34 ms
11,008 KB
testcase_07 AC 44 ms
11,904 KB
testcase_08 AC 686 ms
16,924 KB
testcase_09 AC 473 ms
16,700 KB
testcase_10 AC 634 ms
23,716 KB
testcase_11 AC 686 ms
20,900 KB
testcase_12 AC 797 ms
19,860 KB
testcase_13 AC 673 ms
22,724 KB
testcase_14 AC 710 ms
22,712 KB
testcase_15 AC 797 ms
21,668 KB
testcase_16 AC 801 ms
23,968 KB
testcase_17 AC 785 ms
21,000 KB
testcase_18 AC 580 ms
20,996 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from collections import deque
from heapq import heapify,heappush,heappop

def main():
    n = int(input())
    a = list(map(int,input().split()))
    inc = [0]
    dec = [0]
    for i in range(n - 1):
        if a[i] == a[i + 1]:
            inc.append(1)
            dec.append(1)
        elif a[i] < a[i + 1]:
            inc.append(1)
            dec.append(0)
        else:
            inc.append(0)
            dec.append(1)
    
    for i in range(n - 1):
        inc[i + 1] += inc[i]
        dec[i + 1] += dec[i]
    
    q = int(input())
    for _ in range(q):
        l,r = map(int,input().split())
        if r == l:
            print(1,1)
        else:
            ans = [0,0]
            if inc[r] - inc[l] == r - l:
                ans[0] = 1
            if dec[r] - dec[l] == r - l:
                ans[1] = 1
            print(*ans)

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