結果

問題 No.905 Sorted?
ユーザー hir355hir355
提出日時 2020-04-03 17:43:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 970 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,820 KB
最終ジャッジ日時 2024-07-03 00:59:05
合計ジャッジ時間 11,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 36 ms
11,136 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 47 ms
11,776 KB
testcase_08 AC 775 ms
16,580 KB
testcase_09 AC 514 ms
16,228 KB
testcase_10 AC 697 ms
22,152 KB
testcase_11 AC 764 ms
20,216 KB
testcase_12 AC 901 ms
19,128 KB
testcase_13 AC 766 ms
22,620 KB
testcase_14 AC 824 ms
22,472 KB
testcase_15 AC 970 ms
21,072 KB
testcase_16 AC 925 ms
22,820 KB
testcase_17 AC 909 ms
20,560 KB
testcase_18 AC 681 ms
20,560 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
p = [0] * n
q = [0] * n
for i in range(n - 1):
    if a[i] <= a[i + 1]:
        p[i + 1] = 1
    if a[i] >= a[i + 1]:
        q[i + 1] = 1
    p[i + 1] += p[i]
    q[i + 1] += q[i]
qe = int(input())
for _ in range(qe):
    l, r = map(int, input().split())
    if p[r] - p[l] == r - l:
        print(1, end=' ')
    else:
        print(0, end=' ')
    if q[r] - q[l] == r - l:
        print(1)
    else:
        print(0)
0