結果

問題 No.905 Sorted?
ユーザー buriburiburiburi
提出日時 2019-10-13 18:37:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 793 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,524 KB
最終ジャッジ日時 2024-12-16 06:31:15
合計ジャッジ時間 29,813 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
28,612 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 OLE -
testcase_08 OLE -
testcase_09 OLE -
testcase_10 OLE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 AC 29 ms
10,752 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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]
            print(check)
            inc = True
            dec = True

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

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

main()
0