結果

問題 No.905 Sorted?
ユーザー face4face4
提出日時 2019-10-11 19:03:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,012 KB
最終ジャッジ日時 2024-05-03 21:17:32
合計ジャッジ時間 9,697 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 31 ms
11,136 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 46 ms
11,776 KB
testcase_08 AC 617 ms
17,068 KB
testcase_09 AC 411 ms
16,788 KB
testcase_10 AC 580 ms
22,396 KB
testcase_11 AC 693 ms
20,848 KB
testcase_12 AC 816 ms
20,144 KB
testcase_13 AC 725 ms
23,128 KB
testcase_14 AC 689 ms
23,036 KB
testcase_15 AC 743 ms
21,416 KB
testcase_16 AC 762 ms
24,012 KB
testcase_17 AC 744 ms
20,780 KB
testcase_18 AC 564 ms
21,016 KB
testcase_19 AC 26 ms
10,624 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(x) for x in input().split()]
gt,lt = [0],[0]
for i in range(1, n):
    gt.append(1 if a[i-1] <= a[i] else 0)
    lt.append(1 if a[i-1] >= a[i] else 0)
    gt[i] += gt[i-1]
    lt[i] += lt[i-1]

q = int(input())
for i in range(q):
    l, r = map(int, input().split())
    print(("1" if gt[r]-gt[l]==r-l else "0") + " " + ("1" if lt[r]-lt[l]==r-l else "0"))
0