結果

問題 No.905 Sorted?
ユーザー kuhakukuhaku
提出日時 2019-10-11 22:07:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 624 bytes
コンパイル時間 1,537 ms
コンパイル使用メモリ 166,572 KB
実行使用メモリ 13,884 KB
最終ジャッジ日時 2024-05-04 01:46:11
合計ジャッジ時間 8,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,884 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 8 ms
6,944 KB
testcase_08 AC 274 ms
6,940 KB
testcase_09 AC 246 ms
6,944 KB
testcase_10 AC 948 ms
6,944 KB
testcase_11 AC 187 ms
6,944 KB
testcase_12 AC 218 ms
6,944 KB
testcase_13 AC 226 ms
6,944 KB
testcase_14 AC 567 ms
6,944 KB
testcase_15 AC 208 ms
6,944 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define REP(i, n) for(int (i) = 0; (i) < (n); (i)++)
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))

typedef long long ll;

int main(void){
	int n;
	cin >> n;

	ll a[n];
	REP(i, n){
		cin >> a[i];
	}

	int q;
	cin >> q;
	bool flg;
	REP(i, q){
		int l, r;
		cin >> l >> r;
		flg = true;
		for(int j = l; j < r; j++){
			if(a[j] > a[j+1]){
				flg = false;
				break;
			}
		}
		cout << flg << ' ';
		flg = true;
		for(int j = l; j < r; j++){
			if(a[j] < a[j+1]){
				flg = false;
				break;
			}
		}
		cout << flg << endl;
	}

	return 0;
}
0