結果

問題 No.905 Sorted?
ユーザー 双六双六
提出日時 2020-08-19 04:22:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 114,396 KB
最終ジャッジ日時 2024-10-12 03:31:04
合計ジャッジ時間 4,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,504 KB
testcase_01 AC 43 ms
53,928 KB
testcase_02 AC 42 ms
55,596 KB
testcase_03 AC 42 ms
54,848 KB
testcase_04 AC 43 ms
55,032 KB
testcase_05 AC 59 ms
66,704 KB
testcase_06 AC 54 ms
64,200 KB
testcase_07 AC 67 ms
73,596 KB
testcase_08 AC 187 ms
87,688 KB
testcase_09 AC 155 ms
89,576 KB
testcase_10 AC 183 ms
113,564 KB
testcase_11 AC 192 ms
104,996 KB
testcase_12 AC 203 ms
101,096 KB
testcase_13 AC 181 ms
102,072 KB
testcase_14 AC 192 ms
100,644 KB
testcase_15 AC 177 ms
113,976 KB
testcase_16 AC 173 ms
114,124 KB
testcase_17 AC 173 ms
114,396 KB
testcase_18 AC 161 ms
113,912 KB
testcase_19 AC 42 ms
53,944 KB
testcase_20 AC 41 ms
55,176 KB
testcase_21 AC 41 ms
54,100 KB
testcase_22 AC 42 ms
53,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	A = getlist()
	Q = int(input())
	F = []
	G = []
	for i in range(N - 1):
		if A[i + 1] >= A[i]:
			F.append(1)
		else:
			F.append(0)
		if A[i + 1] <= A[i]:
			G.append(1)
		else:
			G.append(0)

	Fsum = [0]
	Gsum = [0]
	for i in range(N - 1):
		Fsum.append(Fsum[-1] + F[i])
		Gsum.append(Gsum[-1] + G[i])

	for i in range(Q):
		l, r = getlist()
		if Fsum[r] - Fsum[l] == r - l:
			ans1 = 1
		else:
			ans1 = 0
		if Gsum[r] - Gsum[l] == r - l:
			ans2 = 1
		else:
			ans2 = 0

		print(ans1, ans2)




if __name__ == '__main__':
	main()
0