結果

問題 No.905 Sorted?
ユーザー B0_0LB0_0L
提出日時 2019-10-11 21:55:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 635 bytes
コンパイル時間 1,418 ms
コンパイル使用メモリ 168,284 KB
実行使用メモリ 13,764 KB
最終ジャッジ日時 2024-11-25 07:21:28
合計ジャッジ時間 19,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,788 KB
testcase_01 AC 2 ms
10,532 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
11,172 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 77 ms
11,044 KB
testcase_06 AC 14 ms
13,640 KB
testcase_07 AC 1,719 ms
11,040 KB
testcase_08 WA -
testcase_09 TLE -
testcase_10 WA -
testcase_11 AC 186 ms
6,816 KB
testcase_12 AC 205 ms
6,816 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
10,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
using namespace std;

int main(){
  int n;cin >> n;
  int a[n];rep(i,n)cin >> a[i];
  int q;cin >> q;
  int l[q],r[q];
  rep(i,q)cin >> l[i] >> r[i];
  rep(k,q){
    int no = 0;
    for(int i=l[k];i<r[k];++i){
      for(int j=i+1;j<=r[k];++j){
        if(a[i] > a[j]){no = 1;break;}
      }
    }
    if(no == 1){cout << 0 << " ";}
    else cout << 1 << " ";
    no = 0;
    for(int i=l[k];i<r[k];++i){
      for(int j=i+1;j<=r[k];++j){
        if(a[i] < a[j]){no = 1;break;}
      }
    }
    if(no == 1){cout << 0 << endl;}
    else cout << 1 << endl;
  }
  return 0;
}
0