結果

問題 No.905 Sorted?
ユーザー pto8913pto8913
提出日時 2019-10-11 22:49:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 735 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 42,096 KB
最終ジャッジ日時 2024-11-25 08:49:02
合計ジャッジ時間 27,923 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,184 KB
testcase_01 AC 31 ms
26,592 KB
testcase_02 AC 28 ms
17,444 KB
testcase_03 AC 28 ms
25,796 KB
testcase_04 AC 28 ms
17,312 KB
testcase_05 AC 115 ms
32,224 KB
testcase_06 AC 45 ms
17,576 KB
testcase_07 AC 564 ms
33,396 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 361 ms
39,396 KB
testcase_12 AC 428 ms
24,524 KB
testcase_13 AC 390 ms
42,096 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 27 ms
10,496 KB
testcase_20 AC 26 ms
10,368 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 26 ms
30,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

stdin = sys.stdin

ns = lambda : stdin.readline().rstrip()
ni = lambda : int(ns())
na = lambda : list(map(int, stdin.readline().split()))

def main():
  n = ni()
  a = na()

  q = ni()
  for _ in range(q):
    l, r = na()
    gcnt = 0
    lcnt = 0
    ecnt = 0
    for i in range(l, r):
      if a[i] <= a[i+1]:
        gcnt += 1
      if a[i] >= a[i+1]:
        lcnt += 1
      if a[i] == a[i+1]:
        ecnt += 1
    c = r - l
    if gcnt == c:
      if ecnt == c:
        print(1, 1)
        continue
      print(1, 0)
    if lcnt == c:
      if ecnt == c:
        print(1, 1)
        continue
      print(0, 1)
    if ecnt == c:
      print(1, 1)
    if gcnt != c and lcnt != c and ecnt != c:
      print(0, 0)

main()
0