結果

問題 No.905 Sorted?
ユーザー 👑 KazunKazun
提出日時 2020-07-04 17:34:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,820 KB
最終ジャッジ日時 2024-09-19 05:36:32
合計ジャッジ時間 6,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,080 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 34 ms
52,352 KB
testcase_05 AC 52 ms
65,792 KB
testcase_06 AC 47 ms
62,592 KB
testcase_07 AC 66 ms
71,296 KB
testcase_08 AC 342 ms
85,452 KB
testcase_09 AC 221 ms
83,820 KB
testcase_10 AC 278 ms
97,152 KB
testcase_11 AC 296 ms
90,368 KB
testcase_12 AC 319 ms
88,376 KB
testcase_13 AC 291 ms
97,536 KB
testcase_14 AC 320 ms
97,820 KB
testcase_15 AC 329 ms
94,720 KB
testcase_16 AC 323 ms
94,924 KB
testcase_17 AC 312 ms
94,868 KB
testcase_18 AC 282 ms
95,316 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 37 ms
52,608 KB
testcase_21 AC 35 ms
52,224 KB
testcase_22 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[-10*10]+list(map(int,input().split()))+[10**10]

F=[0]*(N+1)
for i in range(1,N+1):
    if A[i]>=A[i-1]:
        F[i]=F[i-1]+1
    else:
        F[i]=1
F=F[1:]

G=[0]*(N+1)
for i in range(1,N+1):
    if A[i]<=A[i-1]:
        G[i]=G[i-1]+1
    else:
        G[i]=1
G=G[1:]

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

    f=1*(r-l==F[r]-F[l])
    g=1*(r-l==G[r]-G[l])

    print(f,g)
0