結果

問題 No.905 Sorted?
ユーザー crow_vanishcrow_vanish
提出日時 2019-10-11 23:01:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-11-25 09:08:15
合計ジャッジ時間 5,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 44 ms
58,496 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 44 ms
52,480 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 69 ms
68,224 KB
testcase_06 AC 55 ms
63,488 KB
testcase_07 AC 86 ms
76,032 KB
testcase_08 AC 335 ms
86,220 KB
testcase_09 AC 262 ms
83,456 KB
testcase_10 AC 295 ms
91,520 KB
testcase_11 AC 309 ms
86,656 KB
testcase_12 AC 301 ms
86,376 KB
testcase_13 AC 315 ms
92,544 KB
testcase_14 AC 339 ms
92,416 KB
testcase_15 AC 261 ms
89,344 KB
testcase_16 AC 228 ms
90,240 KB
testcase_17 AC 275 ms
90,368 KB
testcase_18 AC 267 ms
90,240 KB
testcase_19 AC 37 ms
52,224 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
q=int(input())
lr=[]
for i in range(q):
    l,r=map(int,input().split())
    lr.append((l,r))

f=[]
g=[]
f.append(0)
g.append(0)
for i in range(n-1):
    if a[i]>a[i+1]:
        f.append(i+1)

for i in range(n-1):
    if a[i]<a[i+1]:
        g.append(i+1)

import bisect

for i in range(q):
    l,r=lr[i]
    idx_l=bisect.bisect_right(f,l)
    idx_r=bisect.bisect_right(f,r)
    if (idx_l==idx_r):
        flag1=1
    else:
        flag1=0
    idx_l=bisect.bisect_right(g,l)
    idx_r=bisect.bisect_right(g,r)
    if (idx_l==idx_r):
        flag2=1
    else:
        flag2=0
    print(flag1,flag2)
0