結果

問題 No.905 Sorted?
ユーザー flippergoflippergo
提出日時 2024-10-20 21:10:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 662 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 95,820 KB
最終ジャッジ日時 2024-10-20 21:10:18
合計ジャッジ時間 6,741 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,504 KB
testcase_01 AC 35 ms
53,228 KB
testcase_02 AC 36 ms
52,924 KB
testcase_03 AC 36 ms
52,636 KB
testcase_04 AC 37 ms
53,208 KB
testcase_05 AC 52 ms
65,428 KB
testcase_06 AC 45 ms
62,840 KB
testcase_07 AC 64 ms
72,184 KB
testcase_08 AC 302 ms
84,384 KB
testcase_09 AC 231 ms
82,920 KB
testcase_10 AC 282 ms
94,816 KB
testcase_11 AC 296 ms
88,868 KB
testcase_12 AC 332 ms
87,392 KB
testcase_13 AC 316 ms
95,820 KB
testcase_14 AC 341 ms
94,408 KB
testcase_15 AC 326 ms
92,260 KB
testcase_16 AC 322 ms
92,920 KB
testcase_17 AC 349 ms
92,740 KB
testcase_18 AC 292 ms
93,152 KB
testcase_19 AC 34 ms
52,672 KB
testcase_20 AC 35 ms
52,180 KB
testcase_21 AC 36 ms
53,168 KB
testcase_22 AC 35 ms
52,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
F = [0]*(N+1)
G = [0]*(N+1)
for i in range(1,N):
    a1 = A[i]
    a0 = A[i-1]
    if a1>=a0:
        F[i-1] = 1
    if a1<=a0:
        G[i-1] = 1
cumF = [0]*N
cumG = [0]*N
cumF[0] = F[0]
cumG[0] = G[0]
for i in range(1,N-1):
    cumF[i] = cumF[i-1]+F[i]
    cumG[i] = cumG[i-1]+G[i]
Q = int(input())
for _ in range(Q):
    l,r = map(int,input().split())
    if l>0:
        up = cumF[r-1]-cumF[l-1]
        dow = cumG[r-1]-cumG[l-1]
    else:
        up = cumF[r-1]
        dow = cumG[r-1]
    flagF = 0
    flagG = 0
    if r-l==up:
        flagF = 1
    if r-l==dow:
        flagG = 1
    print(flagF,flagG)
0