結果

問題 No.905 Sorted?
ユーザー tktk_snsntktk_snsn
提出日時 2021-05-25 21:36:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,660 KB
最終ジャッジ日時 2024-10-14 12:35:39
合計ジャッジ時間 6,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 35 ms
11,008 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 40 ms
11,648 KB
testcase_08 AC 359 ms
16,136 KB
testcase_09 AC 242 ms
15,668 KB
testcase_10 AC 362 ms
19,724 KB
testcase_11 AC 356 ms
17,900 KB
testcase_12 AC 401 ms
17,364 KB
testcase_13 AC 387 ms
21,660 KB
testcase_14 AC 391 ms
21,656 KB
testcase_15 AC 399 ms
18,616 KB
testcase_16 AC 390 ms
20,108 KB
testcase_17 AC 396 ms
20,100 KB
testcase_18 AC 321 ms
20,096 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

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

F = [0] * N
G = [0] * N

mx = 0
my = 0
for i in range(1, N):
    if A[i-1] > A[i]:
        mx += 1
    if A[i-1] < A[i]:
        my += 1
    F[i] = mx
    G[i] = my

Q = int(input())
for _ in range(Q):
    l, r = map(int, input().split())
    ans1 = int(F[l] == F[r])
    ans2 = int(G[l] == G[r])
    print(ans1, ans2)
0