結果

問題 No.905 Sorted?
ユーザー face4face4
提出日時 2019-10-11 19:06:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 954 ms / 2,000 ms
コード長 1,165 bytes
コンパイル時間 2,487 ms
コンパイル使用メモリ 79,592 KB
実行使用メモリ 62,004 KB
最終ジャッジ日時 2024-05-03 21:23:07
合計ジャッジ時間 13,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
39,600 KB
testcase_01 AC 79 ms
38,060 KB
testcase_02 AC 78 ms
37,948 KB
testcase_03 AC 81 ms
39,696 KB
testcase_04 AC 74 ms
37,928 KB
testcase_05 AC 133 ms
40,600 KB
testcase_06 AC 105 ms
40,200 KB
testcase_07 AC 176 ms
42,392 KB
testcase_08 AC 828 ms
55,348 KB
testcase_09 AC 640 ms
50,568 KB
testcase_10 AC 833 ms
60,088 KB
testcase_11 AC 893 ms
57,368 KB
testcase_12 AC 810 ms
58,556 KB
testcase_13 AC 825 ms
61,852 KB
testcase_14 AC 803 ms
62,004 KB
testcase_15 AC 862 ms
55,104 KB
testcase_16 AC 935 ms
57,992 KB
testcase_17 AC 954 ms
58,332 KB
testcase_18 AC 861 ms
57,992 KB
testcase_19 AC 72 ms
37,460 KB
testcase_20 AC 72 ms
38,016 KB
testcase_21 AC 75 ms
37,924 KB
testcase_22 AC 73 ms
37,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStreamReader;
import java.io.BufferedReader;

public class Main{
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        String[] line = br.readLine().split(" ");
        if(line.length != n)    System.exit(1);
        long[] a = new long[n];
        for(int i = 0; i < n; i++)  a[i] = Long.parseLong(line[i]);
        int[] gt = new int[n];  gt[0] = 0;
        int[] lt = new int[n];  lt[0] = 0;
        for(int i = 1; i < n; i++){
            if(a[i-1] <= a[i])  gt[i] = 1;
            if(a[i-1] >= a[i])  lt[i] = 1;
            gt[i] += gt[i-1];
            lt[i] += lt[i-1];
        }
        int q = Integer.parseInt(br.readLine());
        for(int i = 0; i < q; i++){
            line = br.readLine().split(" ");
            int l = Integer.parseInt(line[0]), r = Integer.parseInt(line[1]);
            boolean asc = (gt[r]-gt[l] == r-l);
            boolean dec = (lt[r]-lt[l] == r-l);
            System.out.println((asc?1:0) + " " + (dec?1:0));
        }
    }
}
0