結果

問題 No.905 Sorted?
ユーザー htensaihtensai
提出日時 2019-11-11 09:49:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,034 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 77,528 KB
実行使用メモリ 59,896 KB
最終ジャッジ日時 2024-09-15 05:10:42
合計ジャッジ時間 16,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,048 KB
testcase_01 AC 144 ms
41,508 KB
testcase_02 AC 140 ms
41,516 KB
testcase_03 AC 139 ms
41,668 KB
testcase_04 AC 139 ms
41,264 KB
testcase_05 AC 222 ms
45,580 KB
testcase_06 AC 190 ms
43,276 KB
testcase_07 AC 279 ms
47,440 KB
testcase_08 AC 846 ms
58,776 KB
testcase_09 AC 695 ms
52,448 KB
testcase_10 AC 980 ms
57,884 KB
testcase_11 AC 956 ms
57,836 KB
testcase_12 AC 943 ms
59,492 KB
testcase_13 AC 978 ms
59,136 KB
testcase_14 AC 1,034 ms
59,184 KB
testcase_15 AC 954 ms
59,756 KB
testcase_16 AC 1,003 ms
59,896 KB
testcase_17 AC 980 ms
59,760 KB
testcase_18 AC 892 ms
55,020 KB
testcase_19 AC 130 ms
41,112 KB
testcase_20 AC 128 ms
41,136 KB
testcase_21 AC 128 ms
41,232 KB
testcase_22 AC 128 ms
40,980 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[] fArr = new int[n];
		int[] gArr = new int[n];
		long prev = sc.nextLong();
		for (int i = 1; i < n; i++) {
		    long x = sc.nextLong();
		    if (prev <= x) {
		        fArr[i] = fArr[i - 1];
		    } else {
		        fArr[i] = i;
		    }
		    if (prev >= x) {
		        gArr[i] = gArr[i - 1];
		    } else {
		        gArr[i] = i;
		    }
		    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 (fArr[right] <= left) {
		        sb.append(1);
		    } else {
		        sb.append(0);
		    }
		    sb.append(" ");
		    if (gArr[right] <= left) {
		        sb.append(1);
		    } else {
		        sb.append(0);
		    }
		    sb.append("\n");
		}
		System.out.print(sb);
	}
}
0