結果

問題 No.905 Sorted?
ユーザー 👑 rin204rin204
提出日時 2022-01-19 00:07:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 94,848 KB
最終ジャッジ日時 2024-05-02 19:38:31
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 56 ms
64,384 KB
testcase_06 AC 50 ms
60,928 KB
testcase_07 AC 70 ms
70,656 KB
testcase_08 AC 306 ms
83,840 KB
testcase_09 AC 235 ms
82,432 KB
testcase_10 AC 282 ms
93,696 KB
testcase_11 AC 299 ms
87,296 KB
testcase_12 AC 333 ms
85,888 KB
testcase_13 AC 304 ms
94,848 KB
testcase_14 AC 298 ms
94,592 KB
testcase_15 AC 316 ms
90,624 KB
testcase_16 AC 323 ms
91,264 KB
testcase_17 AC 321 ms
91,136 KB
testcase_18 AC 284 ms
91,264 KB
testcase_19 AC 35 ms
51,584 KB
testcase_20 AC 35 ms
51,712 KB
testcase_21 AC 35 ms
51,456 KB
testcase_22 AC 36 ms
51,840 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