結果

問題 No.905 Sorted?
ユーザー tentententen
提出日時 2020-08-27 09:47:15
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,267 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 77,636 KB
実行使用メモリ 59,552 KB
最終ジャッジ日時 2024-11-07 15:29:14
合計ジャッジ時間 13,292 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,108 KB
testcase_01 AC 141 ms
41,656 KB
testcase_02 AC 134 ms
41,204 KB
testcase_03 AC 136 ms
41,176 KB
testcase_04 AC 128 ms
40,688 KB
testcase_05 AC 226 ms
45,284 KB
testcase_06 AC 209 ms
43,284 KB
testcase_07 AC 278 ms
46,664 KB
testcase_08 RE -
testcase_09 AC 698 ms
52,640 KB
testcase_10 RE -
testcase_11 AC 874 ms
55,620 KB
testcase_12 AC 834 ms
59,276 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 847 ms
59,540 KB
testcase_16 AC 957 ms
59,532 KB
testcase_17 AC 865 ms
59,552 KB
testcase_18 AC 835 ms
55,120 KB
testcase_19 AC 122 ms
41,100 KB
testcase_20 AC 125 ms
41,016 KB
testcase_21 AC 125 ms
41,232 KB
testcase_22 AC 129 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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