結果

問題 No.905 Sorted?
ユーザー roarisroaris
提出日時 2019-11-21 18:27:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 114,080 KB
最終ジャッジ日時 2024-10-10 20:16:42
合計ジャッジ時間 6,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,700 KB
testcase_01 AC 40 ms
53,832 KB
testcase_02 AC 38 ms
53,324 KB
testcase_03 AC 39 ms
52,496 KB
testcase_04 AC 39 ms
52,712 KB
testcase_05 AC 60 ms
67,420 KB
testcase_06 AC 49 ms
62,644 KB
testcase_07 AC 73 ms
74,368 KB
testcase_08 AC 293 ms
90,432 KB
testcase_09 AC 228 ms
89,892 KB
testcase_10 AC 278 ms
103,604 KB
testcase_11 AC 287 ms
104,732 KB
testcase_12 AC 336 ms
100,684 KB
testcase_13 AC 302 ms
102,504 KB
testcase_14 AC 310 ms
102,344 KB
testcase_15 AC 334 ms
113,592 KB
testcase_16 AC 330 ms
113,924 KB
testcase_17 AC 332 ms
114,080 KB
testcase_18 AC 278 ms
114,068 KB
testcase_19 AC 39 ms
52,248 KB
testcase_20 AC 38 ms
52,484 KB
testcase_21 AC 39 ms
52,272 KB
testcase_22 AC 36 ms
52,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
incre, decre = [], []

for i in range(N-1):
    if A[i]<=A[i+1]:
        incre.append(1)
    else:
        incre.append(0)
    
    if A[i]>=A[i+1]:
        decre.append(1)
    else:
        decre.append(0)

incre_acc = [0]
decre_acc = [0]

for incre_i in incre:
    incre_acc.append(incre_acc[-1]+incre_i)

for decre_i in decre:
    decre_acc.append(decre_acc[-1]+decre_i)

Q = int(input())

for _ in range(Q):
    li, ri = map(int, input().split())
    
    if incre_acc[ri]-incre_acc[li]==ri-li:
        print(1, end=' ')
    else:
        print(0, end=' ')
    
    if decre_acc[ri]-decre_acc[li]==ri-li:
        print(1)
    else:
        print(0)
0