結果

問題 No.905 Sorted?
ユーザー 👑 rin204rin204
提出日時 2022-01-19 00:07:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 95,056 KB
最終ジャッジ日時 2024-11-23 13:38:11
合計ジャッジ時間 6,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,752 KB
testcase_01 AC 38 ms
53,944 KB
testcase_02 AC 41 ms
53,536 KB
testcase_03 AC 37 ms
53,700 KB
testcase_04 AC 37 ms
52,824 KB
testcase_05 AC 55 ms
65,856 KB
testcase_06 AC 45 ms
61,788 KB
testcase_07 AC 69 ms
71,712 KB
testcase_08 AC 324 ms
84,160 KB
testcase_09 AC 244 ms
82,856 KB
testcase_10 AC 301 ms
93,292 KB
testcase_11 AC 321 ms
87,724 KB
testcase_12 AC 351 ms
86,200 KB
testcase_13 AC 322 ms
94,684 KB
testcase_14 AC 332 ms
95,056 KB
testcase_15 AC 348 ms
90,540 KB
testcase_16 AC 343 ms
91,628 KB
testcase_17 AC 358 ms
91,576 KB
testcase_18 AC 303 ms
91,352 KB
testcase_19 AC 37 ms
52,004 KB
testcase_20 AC 37 ms
53,232 KB
testcase_21 AC 38 ms
52,412 KB
testcase_22 AC 37 ms
53,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
inc = [0] * n
dec = [0] * n
for i in range(1, n):
    inc[i] = inc[i - 1]
    dec[i] = dec[i - 1]
    if A[i] >= A[i - 1]:
        inc[i] += 1
    if A[i] <= A[i - 1]:
        dec[i] += 1

q = int(input())        
for _ in range(q):
    l, r = map(int, input().split())

    if inc[r] - inc[l] == r - l:
        f = 1
    else:
        f = 0
    if dec[r] - dec[l] == r - l:
        g = 1
    else:
        g = 0
    print(f, g)
        
    
0