# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
90968 | kylych03 | 성질 급한 지학이 (IZhO13_crazy) | C++14 | 2 ms | 500 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define sc second
#define fr first
int a[100001];
using namespace std;
main()
{
int t,n,i,res;
cin>>t;
while(t--){
cin>>n;
bool f=true;
res=n;
for(i=1;i<=n;i++){
cin>>a[i];
if(a[i]!=i){
f=false;
res=min(a[i],res);
}
}
if(n==1)
cout<<1<<endl;
else
if(n==2 || f){
cout<<0<<endl;
}
else
cout<<res<<endl;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |