結果

問題 No.905 Sorted?
ユーザー vwxyzvwxyz
提出日時 2024-04-08 09:21:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 892 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,528 KB
最終ジャッジ日時 2024-10-01 05:00:32
合計ジャッジ時間 11,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 36 ms
11,264 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 46 ms
11,776 KB
testcase_08 AC 774 ms
16,948 KB
testcase_09 AC 507 ms
16,740 KB
testcase_10 AC 708 ms
23,172 KB
testcase_11 AC 780 ms
20,856 KB
testcase_12 AC 892 ms
20,020 KB
testcase_13 AC 794 ms
23,528 KB
testcase_14 AC 763 ms
21,960 KB
testcase_15 AC 891 ms
21,968 KB
testcase_16 AC 871 ms
20,672 KB
testcase_17 AC 886 ms
20,684 KB
testcase_18 AC 651 ms
20,688 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
lt=[0]+[int(A[i]<A[i+1]) for i in range(N-1)]
gt=[0]+[int(A[i]>A[i+1]) for i in range(N-1)]
for i in range(1,N):
    lt[i]+=lt[i-1]
    gt[i]+=gt[i-1]
Q=int(input())
for q in range(Q):
    L,R=map(int,input().split())
    f=int(gt[R]-gt[L]==0)
    g=int(lt[R]-lt[L]==0)
    print(f,g)
0