結果

問題 No.905 Sorted?
ユーザー master3821master3821
提出日時 2019-10-12 13:19:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 314 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,152 KB
最終ジャッジ日時 2024-11-27 19:35:54
合計ジャッジ時間 27,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,872 KB
testcase_01 AC 27 ms
26,776 KB
testcase_02 AC 28 ms
16,000 KB
testcase_03 AC 29 ms
26,032 KB
testcase_04 AC 27 ms
16,000 KB
testcase_05 AC 38 ms
32,400 KB
testcase_06 AC 30 ms
16,000 KB
testcase_07 AC 77 ms
33,452 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 750 ms
39,152 KB
testcase_12 AC 817 ms
38,644 KB
testcase_13 AC 691 ms
27,060 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 28 ms
10,624 KB
testcase_20 AC 26 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 26 ms
17,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dec(a):
    if a == sorted(a,reverse=True):return 1
    else:return 0
    
def inc(a):
    if a == sorted(a):return 1
    else:return 0

N = int(input())
a = list(map(int,input().split()))
Q = int(input())
for _ in range(Q):
    b,c = map(int,input().split())
    targ = a[b:c+1]
    print(inc(targ),dec(targ))
0