結果

問題 No.905 Sorted?
ユーザー H20H20
提出日時 2021-10-30 19:06:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 361 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 103,516 KB
最終ジャッジ日時 2024-10-07 13:50:43
合計ジャッジ時間 6,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,804 KB
testcase_01 AC 41 ms
52,896 KB
testcase_02 AC 41 ms
53,152 KB
testcase_03 AC 40 ms
53,060 KB
testcase_04 AC 40 ms
52,276 KB
testcase_05 AC 58 ms
66,964 KB
testcase_06 AC 51 ms
62,516 KB
testcase_07 AC 73 ms
73,532 KB
testcase_08 AC 334 ms
88,556 KB
testcase_09 AC 255 ms
86,312 KB
testcase_10 AC 319 ms
98,732 KB
testcase_11 AC 337 ms
96,964 KB
testcase_12 AC 361 ms
93,440 KB
testcase_13 AC 332 ms
94,548 KB
testcase_14 AC 340 ms
94,364 KB
testcase_15 AC 356 ms
102,264 KB
testcase_16 AC 348 ms
103,148 KB
testcase_17 AC 352 ms
103,516 KB
testcase_18 AC 319 ms
103,280 KB
testcase_19 AC 39 ms
52,264 KB
testcase_20 AC 38 ms
51,808 KB
testcase_21 AC 39 ms
52,180 KB
testcase_22 AC 38 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())
A = list(map(int, input().split())) 
U = [1]*N
D = [1]*N
for i in range(1,N):
    if A[i]<A[i-1]:
        U[i]=0
for i in range(1,N):
    if A[i]>A[i-1]:
        D[i]=0
UAC = list(itertools.accumulate(U))
DAC = list(itertools.accumulate(D))


Q = int(input())
for _ in range(Q):
    l,r = map(int, input().split())
    if l==r:
        print(1,1)
    else:
        f = int(r-l == UAC[r]-UAC[l])
        g = int(r-l == DAC[r]-DAC[l])
        print(f,g)
0