結果

問題 No.905 Sorted?
ユーザー ThetaTheta
提出日時 2022-10-20 19:12:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 763 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,176 KB
最終ジャッジ日時 2024-06-30 10:41:55
合計ジャッジ時間 9,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 35 ms
11,136 KB
testcase_06 AC 35 ms
11,008 KB
testcase_07 AC 41 ms
12,032 KB
testcase_08 AC 653 ms
16,592 KB
testcase_09 AC 421 ms
16,760 KB
testcase_10 AC 565 ms
21,688 KB
testcase_11 AC 638 ms
19,988 KB
testcase_12 AC 738 ms
18,772 KB
testcase_13 AC 627 ms
22,784 KB
testcase_14 AC 651 ms
21,972 KB
testcase_15 AC 753 ms
18,692 KB
testcase_16 AC 763 ms
24,176 KB
testcase_17 AC 731 ms
21,068 KB
testcase_18 AC 546 ms
21,024 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 30 ms
10,880 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import pairwise


def main():
    N = int(input())
    A = list(map(int, input().split()))

    leq_table = [0]
    geq_table = [0]

    for num1, num2 in pairwise(A):
        if num1 < num2:
            leq_table.append(leq_table[-1]+1)
            geq_table.append(geq_table[-1])
        elif num1 > num2:
            leq_table.append(leq_table[-1])
            geq_table.append(geq_table[-1]+1)
        else:
            leq_table.append(leq_table[-1]+1)
            geq_table.append(geq_table[-1]+1)

    for _ in range(int(input())):
        l, r = map(int, input().split())
        if leq_table[r] - leq_table[l] == r - l:
            print("1 ", end="")
        else:
            print("0 ", end="")

        if geq_table[r] - geq_table[l] == r - l:
            print(1)
        else:
            print(0)


if __name__ == "__main__":
    main()
0