結果

問題 No.905 Sorted?
ユーザー FromBooskaFromBooska
提出日時 2023-08-10 10:43:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 1,083 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-11-16 13:53:49
合計ジャッジ時間 7,114 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 61 ms
65,536 KB
testcase_06 AC 51 ms
61,824 KB
testcase_07 AC 75 ms
72,576 KB
testcase_08 AC 332 ms
88,576 KB
testcase_09 AC 250 ms
86,272 KB
testcase_10 AC 300 ms
105,344 KB
testcase_11 AC 321 ms
96,640 KB
testcase_12 AC 347 ms
93,568 KB
testcase_13 AC 318 ms
94,464 KB
testcase_14 AC 328 ms
94,592 KB
testcase_15 AC 337 ms
102,784 KB
testcase_16 AC 349 ms
103,552 KB
testcase_17 AC 339 ms
103,168 KB
testcase_18 AC 286 ms
103,424 KB
testcase_19 AC 38 ms
51,840 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 AC 38 ms
51,712 KB
testcase_22 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2つの異なることを調べたいので別々に調べる

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

#print(increase)
#print(decrease)

increase_cumu = [0]
temp = 0
for i in range(N):
    temp += increase[i]
    increase_cumu.append(temp)

decrease_cumu = [0]
temp = 0
for i in range(N):
    temp += decrease[i]
    decrease_cumu.append(temp)
    
#print(increase_cumu)
#print(decrease_cumu)

Q = int(input())
for q in range(Q):
    l, r = map(int, input().split())
    ans1 = 0
    if increase_cumu[r+1]-increase_cumu[l+1] == r-l:
        ans1 = 1
    ans2 = 0
    if decrease_cumu[r+1]-decrease_cumu[l+1] == r-l:
        ans2 = 1
    print(ans1, ans2)
        


0