結果

問題 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
コンパイル時間 94 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-05-04 02:37:36
合計ジャッジ時間 4,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,692 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 25 ms
10,624 KB
testcase_05 AC 110 ms
11,136 KB
testcase_06 AC 46 ms
11,008 KB
testcase_07 AC 531 ms
11,648 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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