結果

問題 No.905 Sorted?
ユーザー tentententen
提出日時 2022-08-04 08:30:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 1,844 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-09-14 04:38:44
合計ジャッジ時間 8,723 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,952 KB
testcase_01 AC 53 ms
37,064 KB
testcase_02 AC 53 ms
36,880 KB
testcase_03 AC 53 ms
36,952 KB
testcase_04 AC 52 ms
37,008 KB
testcase_05 AC 101 ms
39,284 KB
testcase_06 AC 88 ms
38,160 KB
testcase_07 AC 128 ms
39,876 KB
testcase_08 AC 399 ms
50,416 KB
testcase_09 AC 318 ms
46,356 KB
testcase_10 AC 413 ms
50,724 KB
testcase_11 AC 375 ms
49,020 KB
testcase_12 AC 396 ms
48,708 KB
testcase_13 AC 441 ms
52,172 KB
testcase_14 AC 449 ms
53,248 KB
testcase_15 AC 381 ms
48,800 KB
testcase_16 AC 411 ms
49,476 KB
testcase_17 AC 426 ms
48,680 KB
testcase_18 AC 396 ms
48,640 KB
testcase_19 AC 54 ms
36,876 KB
testcase_20 AC 52 ms
36,836 KB
testcase_21 AC 53 ms
36,876 KB
testcase_22 AC 53 ms
36,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] ups = new int[n];
        int[] downs = new int[n];
        long prev = sc.nextLong();
        for (int i = 1; i < n; i++) {
            ups[i] = ups[i - 1];
            downs[i] = downs[i - 1];
            long x = sc.nextLong();
            if (prev <= x) {
                ups[i]++;
            }
            if (prev >= x) {
                downs[i]++;
            }
            prev = x;
        }
        int q = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int left = sc.nextInt();
            int right = sc.nextInt();
            if (ups[right] - ups[left] == right - left) {
                sb.append("1 ");
            } else {
                sb.append("0 ");
            }
            if (downs[right] - downs[left] == right - left) {
                sb.append("1\n");
            } else {
                sb.append("0\n");
            }
        }
        System.out.print(sb);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0