結果
問題 | No.905 Sorted? |
ユーザー | tonnnura172 |
提出日時 | 2020-04-05 05:04:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 462 ms / 2,000 ms |
コード長 | 1,066 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 27,456 KB |
最終ジャッジ日時 | 2024-07-23 18:39:21 |
合計ジャッジ時間 | 7,343 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
11,136 KB |
testcase_01 | AC | 36 ms
11,264 KB |
testcase_02 | AC | 38 ms
11,136 KB |
testcase_03 | AC | 34 ms
11,264 KB |
testcase_04 | AC | 35 ms
11,136 KB |
testcase_05 | AC | 39 ms
11,392 KB |
testcase_06 | AC | 36 ms
11,392 KB |
testcase_07 | AC | 45 ms
12,160 KB |
testcase_08 | AC | 390 ms
21,524 KB |
testcase_09 | AC | 268 ms
19,436 KB |
testcase_10 | AC | 394 ms
24,220 KB |
testcase_11 | AC | 395 ms
22,596 KB |
testcase_12 | AC | 447 ms
23,376 KB |
testcase_13 | AC | 431 ms
25,652 KB |
testcase_14 | AC | 434 ms
25,384 KB |
testcase_15 | AC | 462 ms
25,684 KB |
testcase_16 | AC | 447 ms
24,352 KB |
testcase_17 | AC | 459 ms
27,456 KB |
testcase_18 | AC | 356 ms
25,320 KB |
testcase_19 | AC | 35 ms
11,136 KB |
testcase_20 | AC | 34 ms
11,136 KB |
testcase_21 | AC | 34 ms
11,264 KB |
testcase_22 | AC | 33 ms
11,136 KB |
ソースコード
import sys, re from collections import deque, defaultdict, Counter from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians from itertools import accumulate, permutations, combinations, product from operator import itemgetter, mul, add from copy import deepcopy from string import ascii_lowercase, ascii_uppercase, digits from bisect import bisect, bisect_left from heapq import heappush, heappop from functools import reduce def input(): return sys.stdin.readline().strip() def INT(): return int(input()) def MAP(): return map(int, input().split()) def LIST(): return list(map(int, input().split())) def ZIP(n): return zip(*(MAP() for _ in range(n))) sys.setrecursionlimit(10 ** 9) INF = float('inf') mod = 10 ** 9 + 7 N = INT() A = LIST() Q = INT() inc = [0]*N dec = [0]*N tmp_inc = 0 tmp_dec = 0 for i in range(1, N): if A[i-1] > A[i]: tmp_inc += 1 inc[i] = tmp_inc if A[i-1] < A[i]: tmp_dec += 1 dec[i] = tmp_dec ans = [] for _ in range(Q): l, r = MAP() ans.append((int(inc[r]==inc[l]), int(dec[r]==dec[l]))) for x in ans: print(*x)