結果
問題 | No.905 Sorted? |
ユーザー | buriburi |
提出日時 | 2019-10-13 19:24:44 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 792 bytes |
コンパイル時間 | 321 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 21,564 KB |
最終ジャッジ日時 | 2024-05-09 17:43:43 |
合計ジャッジ時間 | 4,790 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,000 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 78 ms
11,008 KB |
testcase_06 | AC | 36 ms
11,008 KB |
testcase_07 | AC | 527 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 | -- | - |
ソースコード
N = int(input()) A = [int(k) for k in input().split()] Q = int(input()) for p in range(Q): x, y = [int(k) for k in input().split()] if (x == y): print("1 1") else: inc = True dec = True t = True for i in range(x, y -1): a ,b = A[i], A[i + 1] if inc: if a > b: inc = False if dec: if b > a: dec = False if (not dec) and (not inc): t = False print("0 0") break if t: if inc: l = "1 " else: l = '0 ' if dec: r = "1" else: r = '0' print(l + r)