結果

問題 No.905 Sorted?
ユーザー htensaihtensai
提出日時 2019-11-11 09:48:24
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 959 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 59,728 KB
最終ジャッジ日時 2024-09-15 05:10:25
合計ジャッジ時間 13,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,280 KB
testcase_01 AC 144 ms
41,632 KB
testcase_02 AC 140 ms
41,288 KB
testcase_03 AC 140 ms
41,232 KB
testcase_04 AC 143 ms
41,660 KB
testcase_05 AC 222 ms
45,460 KB
testcase_06 AC 196 ms
43,584 KB
testcase_07 AC 282 ms
47,340 KB
testcase_08 RE -
testcase_09 AC 727 ms
52,496 KB
testcase_10 RE -
testcase_11 AC 916 ms
57,932 KB
testcase_12 AC 931 ms
59,276 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 887 ms
59,392 KB
testcase_16 AC 975 ms
59,464 KB
testcase_17 AC 975 ms
59,728 KB
testcase_18 AC 835 ms
59,300 KB
testcase_19 AC 130 ms
41,008 KB
testcase_20 AC 130 ms
41,204 KB
testcase_21 AC 128 ms
40,920 KB
testcase_22 AC 115 ms
40,212 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];
		int prev = sc.nextInt();
		for (int i = 1; i < n; i++) {
		    int x = sc.nextInt();
		    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