結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,120 KB
testcase_01 AC 138 ms
41,308 KB
testcase_02 AC 154 ms
41,344 KB
testcase_03 AC 136 ms
41,760 KB
testcase_04 AC 136 ms
41,492 KB
testcase_05 AC 222 ms
45,824 KB
testcase_06 AC 196 ms
43,112 KB
testcase_07 AC 273 ms
47,360 KB
testcase_08 AC 870 ms
59,128 KB
testcase_09 AC 773 ms
52,348 KB
testcase_10 AC 926 ms
58,528 KB
testcase_11 AC 891 ms
56,024 KB
testcase_12 AC 912 ms
59,560 KB
testcase_13 AC 999 ms
58,324 KB
testcase_14 AC 1,071 ms
59,340 KB
testcase_15 AC 899 ms
59,204 KB
testcase_16 AC 890 ms
59,672 KB
testcase_17 AC 918 ms
59,028 KB
testcase_18 AC 837 ms
54,896 KB
testcase_19 AC 124 ms
40,908 KB
testcase_20 AC 126 ms
41,068 KB
testcase_21 AC 111 ms
39,828 KB
testcase_22 AC 122 ms
41,248 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;
        long prev = sc.nextLong();
        for (int i = 1; i < n; i++) {
            long x = sc.nextLong();
            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