답안 #473164

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
473164 2021-09-15T09:38:46 Z Ahmed_Solyman Doktor (COCI17_doktor) C++14
20 / 100
1000 ms 4044 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);      cout.tie(0);
    ll n;cin>>n;
    vector<ll>arr(n);
    for(auto &i:arr)cin>>i;
    ll x=1,y=1;
    ll mx=0;
    for(ll i=0;i<n;i++){
        for(ll j=i+1;j<n;j++){
            ll cnt=0,sz=j-i+1;
            for(ll k=i;k<=j;k++){
                ll idx=i+(sz-k);
                cnt+=(arr[k]==idx);
            }
            if(cnt>mx){
                x=arr[i];y=arr[j];
                mx=cnt;
            }
        }
    }
    cout<<x<<" "<<y<<endl;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 7 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1070 ms 204 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1092 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1090 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1078 ms 332 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1085 ms 972 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1096 ms 4044 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1080 ms 2508 KB Time limit exceeded
2 Halted 0 ms 0 KB -