結果
問題 | No.905 Sorted? |
ユーザー | buriburi |
提出日時 | 2019-10-13 18:51:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 885 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,648 KB |
最終ジャッジ日時 | 2024-05-09 16:27:51 |
合計ジャッジ時間 | 2,581 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,624 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 31 ms
10,752 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
N = int(input()) A = [int(k) for k in input().split()] Q = int(input()) def main(): for p in range(Q): x, y = [int(k) for k in input().split()] if (x == y): print("1 1") else: check = A[x : y +1] inc = True dec = True for i in range(len(check)-1): a ,b = check[i ], check[i + 1] if inc: if a > b: inc = False if dec: if b > a: dec = False if (dex == False) and (inc == False): print("0 0") break if inc: l = "1 " else: l = '0 ' if dec: r = "1" else: r = '0' print(l + r) main()