結果
問題 | No.905 Sorted? |
ユーザー | buriburi |
提出日時 | 2019-10-13 18:49:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 881 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 32,808 KB |
最終ジャッジ日時 | 2024-12-16 06:52:47 |
合計ジャッジ時間 | 28,495 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
17,568 KB |
testcase_01 | AC | 36 ms
16,128 KB |
testcase_02 | AC | 36 ms
17,576 KB |
testcase_03 | AC | 34 ms
10,880 KB |
testcase_04 | AC | 35 ms
16,256 KB |
testcase_05 | AC | 72 ms
32,808 KB |
testcase_06 | AC | 42 ms
17,828 KB |
testcase_07 | AC | 266 ms
17,024 KB |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | AC | 666 ms
24,484 KB |
testcase_12 | AC | 766 ms
23,772 KB |
testcase_13 | AC | 670 ms
28,784 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 33 ms
10,880 KB |
testcase_20 | AC | 35 ms
10,752 KB |
testcase_21 | AC | 33 ms
10,752 KB |
testcase_22 | AC | 34 ms
16,256 KB |
ソースコード
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 (not dec) and (not inc): print("0 0") break''' if inc: l = "1 " else: l = '0 ' if dec: r = "1" else: r = '0' print(l + r) main()