結果

問題 No.905 Sorted?
ユーザー ntudantuda
提出日時 2024-11-22 23:21:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 103,040 KB
最終ジャッジ日時 2024-11-22 23:21:12
合計ジャッジ時間 7,059 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
52,832 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 41 ms
52,864 KB
testcase_04 AC 43 ms
52,352 KB
testcase_05 AC 57 ms
65,280 KB
testcase_06 AC 50 ms
61,312 KB
testcase_07 AC 71 ms
72,704 KB
testcase_08 AC 325 ms
88,704 KB
testcase_09 AC 252 ms
86,144 KB
testcase_10 AC 314 ms
99,496 KB
testcase_11 AC 348 ms
96,640 KB
testcase_12 AC 351 ms
93,496 KB
testcase_13 AC 334 ms
94,592 KB
testcase_14 AC 366 ms
94,336 KB
testcase_15 AC 348 ms
102,464 KB
testcase_16 AC 353 ms
102,912 KB
testcase_17 AC 350 ms
103,040 KB
testcase_18 AC 311 ms
102,984 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 39 ms
52,608 KB
testcase_21 AC 38 ms
51,968 KB
testcase_22 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

N = int(input())
A = list(map(int, input().split()))
B = [0] * N
C = [0] * N
ans = [0, 1]
for i in range(1, N):
    if A[i - 1] <= A[i]:
        B[i] = 1
    if A[i - 1] >= A[i]:
        C[i] = 1
B = list(accumulate(B))
C = list(accumulate(C))

for _ in range(int(input())):
    l, r = map(int, input().split())
    print(ans[B[r] - B[l] == r - l], ans[C[r] - C[l] == r - l])
0