Submission #63243454


Source Code Expand

Copy
#include<atcoder/all>
#include<bits/stdc++.h>
template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define reps(i,a,n) for(int i=(a);i<(int)(n);++i)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define all(box) (box).begin(), (box).end()
using namespace std;
using namespace atcoder;
typedef long long ll;
const ll INF=1LL<<60;
using P=pair<int,int>;
int dx1[]={1,-1,0,0};
int dy1[]={0,0,1,-1};
int dx2[]={0,0,1,-1,1,-1,1,-1};
int dy2[]={1,-1,0,0,1,-1,-1,1};
//10->n
/*
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include<atcoder/all>
#include<bits/stdc++.h>

template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define reps(i,a,n) for(int i=(a);i<(int)(n);++i)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define all(box) (box).begin(), (box).end()
using namespace std;
using namespace atcoder;
typedef long long ll;
const ll INF=1LL<<60;
using P=pair<int,int>;
int dx1[]={1,-1,0,0};
int dy1[]={0,0,1,-1};
int dx2[]={0,0,1,-1,1,-1,1,-1};
int dy2[]={1,-1,0,0,1,-1,-1,1};

//10->n進数へ変換
/*
    vector<int> ans;
    while(k){
        ans.push_back(k%2);
        k/=2;
    }
*/
//n進数->10進数へ変換
/*
ll f(string s,ll k){
    ll ans=0;
    for(char x:s){
        ans *= k;
        ans += x - '0';
    }
    return ans;
}
*/
int main(){
    int n;
    cin>>n;
    vector<int> a(n);
    rep(i,n) cin>>a[i];
    rep(i,n-1) if(a[i]>=a[i+1]){
        cout<<"No"<<endl;
        return 0;
    }
    cout<<"Yes"<<endl;
    return 0;
}

Submission Info

Submission Time
Task A - Strictly Increasing?
User rihojianbu
Language C++ 20 (gcc 12.2)
Score 100
Code Size 1164 Byte
Status AC
Exec Time 1 ms
Memory 3688 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 30
Set Name Test Cases
Sample 00-sample-001.txt, 00-sample-002.txt, 00-sample-003.txt
All 00-sample-001.txt, 00-sample-002.txt, 00-sample-003.txt, 01-random-001.txt, 01-random-002.txt, 01-random-003.txt, 01-random-004.txt, 01-random-005.txt, 01-random-006.txt, 01-random-007.txt, 01-random-008.txt, 01-random-009.txt, 02-small-001.txt, 02-small-002.txt, 02-small-003.txt, 02-small-004.txt, 02-small-005.txt, 02-small-006.txt, 02-small-007.txt, 02-small-008.txt, 02-small-009.txt, 03-large-001.txt, 03-large-002.txt, 03-large-003.txt, 03-large-004.txt, 03-large-005.txt, 03-large-006.txt, 03-large-007.txt, 03-large-008.txt, 03-large-009.txt
Case Name Status Exec Time Memory
00-sample-001.txt AC 1 ms 3608 KB
00-sample-002.txt AC 1 ms 3484 KB
00-sample-003.txt AC 1 ms 3408 KB
01-random-001.txt AC 1 ms 3612 KB
01-random-002.txt AC 1 ms 3608 KB
01-random-003.txt AC 1 ms 3572 KB
01-random-004.txt AC 1 ms 3572 KB
01-random-005.txt AC 1 ms 3508 KB
01-random-006.txt AC 1 ms 3528 KB
01-random-007.txt AC 1 ms 3416 KB
01-random-008.txt AC 1 ms 3688 KB
01-random-009.txt AC 1 ms 3536 KB
02-small-001.txt AC 1 ms 3404 KB
02-small-002.txt AC 1 ms 3496 KB
02-small-003.txt AC 1 ms 3404 KB
02-small-004.txt AC 1 ms 3572 KB
02-small-005.txt AC 1 ms 3492 KB
02-small-006.txt AC 1 ms 3536 KB
02-small-007.txt AC 1 ms 3496 KB
02-small-008.txt AC 1 ms 3508 KB
02-small-009.txt AC 1 ms 3500 KB
03-large-001.txt AC 1 ms 3508 KB
03-large-002.txt AC 1 ms 3476 KB
03-large-003.txt AC 1 ms 3500 KB
03-large-004.txt AC 1 ms 3504 KB
03-large-005.txt AC 1 ms 3608 KB
03-large-006.txt AC 1 ms 3508 KB
03-large-007.txt AC 1 ms 3508 KB
03-large-008.txt AC 1 ms 3516 KB
03-large-009.txt AC 1 ms 3536 KB


2025-04-04 (Fri)
03:51:03 +00:00