結果

問題 No.905 Sorted?
ユーザー GrayCoderGrayCoder
提出日時 2019-10-11 22:24:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 677 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 36,476 KB
最終ジャッジ日時 2024-05-04 02:08:33
合計ジャッジ時間 5,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 27 ms
11,136 KB
testcase_06 AC 26 ms
11,008 KB
testcase_07 AC 32 ms
11,904 KB
testcase_08 AC 289 ms
28,100 KB
testcase_09 AC 198 ms
23,160 KB
testcase_10 AC 303 ms
31,460 KB
testcase_11 AC 288 ms
31,272 KB
testcase_12 AC 336 ms
32,120 KB
testcase_13 AC 330 ms
33,160 KB
testcase_14 AC 320 ms
33,212 KB
testcase_15 AC 333 ms
29,676 KB
testcase_16 AC 352 ms
36,476 KB
testcase_17 AC 338 ms
36,384 KB
testcase_18 AC 268 ms
32,464 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N = int(input())
    A = list(map(int, input().split()))
    Q = int(input())
    LR = [tuple(map(int, input().split())) for _ in [0] * Q]

    fn = [0] * N
    gn = fn[:]
    for i in range(1, N):
        if A[i-1] <= A[i]:
            fn[i] = fn[i-1] + 1
        else:
            fn[i] = fn[i-1] - 1
        if A[i-1] >= A[i]:
            gn[i] = gn[i-1] - 1
        else:
            gn[i] = gn[i-1] + 1

    for l, r in LR:
        f, g = 0, 0
        n = r - l
        if fn[r] - fn[l] == n:
            f = 1
        if gn[r] - gn[l] == -n:
            g = 1
        print(f, g)


main()
0