結果

問題 No.905 Sorted?
ユーザー buriburiburiburi
提出日時 2019-10-13 18:49:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 881 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 10,792 KB
実行使用メモリ 19,076 KB
最終ジャッジ日時 2023-08-22 10:44:45
合計ジャッジ時間 4,531 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
14,940 KB
testcase_01 AC 17 ms
7,796 KB
testcase_02 AC 17 ms
7,768 KB
testcase_03 AC 17 ms
7,768 KB
testcase_04 AC 17 ms
7,776 KB
testcase_05 AC 47 ms
8,620 KB
testcase_06 AC 22 ms
8,364 KB
testcase_07 AC 203 ms
9,144 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(k) for k in input().split()]
Q = int(input())
def main():
    for p in range(Q):
        x, y = [int(k) for k in input().split()]
        if (x == y):
            print("1 1")
        else:
            check = A[x : y +1]
            inc = True
            dec = True

            for i in range(len(check)-1):
                a ,b = check[i ], check[i + 1]
                if inc:
                    if a > b:
                        inc = False

                if dec:
                    if b > a:
                        dec = False
                '''if (not dec) and (not inc):
                    print("0 0")
                    break'''
            if inc:
                l = "1 "
            else:
                l = '0 '
            if dec:
                r = "1"
            else:
                r = '0'
            print(l + r)

main()
0