結果

問題 No.905 Sorted?
ユーザー wattaiheiwattaihei
提出日時 2019-10-11 22:14:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 972 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,304 KB
最終ジャッジ日時 2024-05-04 01:56:51
合計ジャッジ時間 6,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 27 ms
10,880 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
11,008 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 44 ms
12,032 KB
testcase_08 AC 362 ms
31,620 KB
testcase_09 AC 259 ms
25,132 KB
testcase_10 AC 403 ms
32,460 KB
testcase_11 AC 418 ms
32,676 KB
testcase_12 AC 461 ms
34,952 KB
testcase_13 AC 462 ms
35,036 KB
testcase_14 AC 457 ms
34,768 KB
testcase_15 AC 485 ms
34,520 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 392 ms
33,240 KB
testcase_19 AC 28 ms
10,880 KB
testcase_20 AC 25 ms
10,880 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
Q = int(input())
Query = [list(map(int, input().split())) for _ in range(Q)]

increase = [0 for _ in range(N)]

l = 0
r = 0
while l < N-1:
    if r < N-1:
        if A[r] <= A[r+1]:
            r += 1
        elif l == r:
            increase[l] = r
            r += 1
            l += 1
        else:
            increase[l] = r
            l += 1
    else:
        increase[l] = r
        l += 1

decrease = [0 for _ in range(N)]

l = 0
r = 0
while l < N-1:
    if r < N-1:
        if A[r] >= A[r+1]:
            r += 1
        elif l == r:
            decrease[l] = r
            r += 1
            l += 1
        else:
            decrease[l] = r
            l += 1
    else:
        decrease[l] = r
        l += 1

for l, r in Query:
    if r <= increase[l]:
        a = 1
    else:
        a = 0
    if r <= decrease[l]:
        b = 1
    else:
        b = 0
    print(a, b)
0