結果

問題 No.905 Sorted?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-04 10:30:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 111,984 KB
最終ジャッジ日時 2024-07-03 12:31:51
合計ジャッジ時間 5,570 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,464 KB
testcase_01 AC 35 ms
53,740 KB
testcase_02 AC 36 ms
52,684 KB
testcase_03 AC 36 ms
53,356 KB
testcase_04 AC 36 ms
53,136 KB
testcase_05 AC 63 ms
71,044 KB
testcase_06 AC 50 ms
65,508 KB
testcase_07 AC 76 ms
76,884 KB
testcase_08 AC 269 ms
101,672 KB
testcase_09 AC 191 ms
93,628 KB
testcase_10 AC 229 ms
99,820 KB
testcase_11 AC 264 ms
102,692 KB
testcase_12 AC 280 ms
106,348 KB
testcase_13 AC 269 ms
103,328 KB
testcase_14 AC 271 ms
103,188 KB
testcase_15 AC 249 ms
109,616 KB
testcase_16 AC 248 ms
111,816 KB
testcase_17 AC 242 ms
111,984 KB
testcase_18 AC 220 ms
103,144 KB
testcase_19 AC 34 ms
52,856 KB
testcase_20 AC 33 ms
53,132 KB
testcase_21 AC 33 ms
53,604 KB
testcase_22 AC 33 ms
53,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
q = int(input())
LR = [list(map(int,input().split())) for i in range(q)]
ans = [[0,0] for i in range(q)]
query = [[] for i in range(n)]
for i,(l,r) in enumerate(LR):
    query[l].append((r+1,i))

now = 0
for i,a in enumerate(A):
    now = max(i+1,now)
    while now < n and A[now] >= A[now-1]:
        now += 1
    for r,ind in query[i]:
        if r <= now:
            ans[ind][0] = 1

now = 0
for i,a in enumerate(A):
    now = max(i+1,now)
    while now < n and A[now] <= A[now-1]:
        now += 1
    for r,ind in query[i]:
        if r <= now:
            ans[ind][1] = 1
for i in ans:
    print(*i)
0