結果

問題 No.905 Sorted?
ユーザー sho_00sho_00
提出日時 2020-04-08 17:06:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 775 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,988 KB
最終ジャッジ日時 2024-07-18 17:02:06
合計ジャッジ時間 9,321 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 24 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 35 ms
11,648 KB
testcase_08 AC 610 ms
15,924 KB
testcase_09 AC 400 ms
16,224 KB
testcase_10 AC 558 ms
21,416 KB
testcase_11 AC 606 ms
18,768 KB
testcase_12 AC 704 ms
17,644 KB
testcase_13 AC 643 ms
22,488 KB
testcase_14 AC 605 ms
21,956 KB
testcase_15 AC 723 ms
18,484 KB
testcase_16 AC 735 ms
22,988 KB
testcase_17 AC 775 ms
20,680 KB
testcase_18 AC 533 ms
20,552 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 25 ms
10,624 KB
testcase_22 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
plus=[0]*n
minus=[0]*n
for i in range(1,n):
  if a[i-1]<=a[i]:
    plus[i]=(plus[i-1]+1)
  if a[i-1]>=a[i]:
    minus[i]=minus[i-1]+1

q=int(input())
for i in range(q):
  l,r=map(int,input().split())
  if plus[r]-plus[l]==r-l:
    f=1
  else:
    f=0
  if minus[r]-minus[l]==r-l:
    g=1
  else:
    g=0
  print(' '.join([str(f),str(g)]))
0