結果

問題 No.905 Sorted?
ユーザー convexineqconvexineq
提出日時 2021-04-10 20:50:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 107,420 KB
最終ジャッジ日時 2024-06-26 09:25:46
合計ジャッジ時間 6,333 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,540 KB
testcase_01 AC 39 ms
53,624 KB
testcase_02 AC 38 ms
52,992 KB
testcase_03 AC 37 ms
53,104 KB
testcase_04 AC 42 ms
54,120 KB
testcase_05 AC 59 ms
68,160 KB
testcase_06 AC 51 ms
64,164 KB
testcase_07 AC 73 ms
74,244 KB
testcase_08 AC 329 ms
90,800 KB
testcase_09 AC 252 ms
87,992 KB
testcase_10 AC 313 ms
102,420 KB
testcase_11 AC 326 ms
99,408 KB
testcase_12 AC 368 ms
96,500 KB
testcase_13 AC 345 ms
95,316 KB
testcase_14 AC 346 ms
95,688 KB
testcase_15 AC 371 ms
106,548 KB
testcase_16 AC 360 ms
107,232 KB
testcase_17 AC 359 ms
107,160 KB
testcase_18 AC 298 ms
107,420 KB
testcase_19 AC 37 ms
52,408 KB
testcase_20 AC 36 ms
52,756 KB
testcase_21 AC 36 ms
52,268 KB
testcase_22 AC 35 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
inc = [0] + [int(i<=j) for i,j in zip(a,a[1:])]
dec = [0] + [int(i>=j) for i,j in zip(a,a[1:])]
for i in range(1,n):
    inc[i] += inc[i-1]
    dec[i] += dec[i-1]
Q = int(input())
for _ in range(Q):
    L,R = map(int,input().split())
    print(int(inc[R]-inc[L] == R-L),int(dec[R]-dec[L] == R-L))
0