# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
90965 | 2018-12-25T10:33:06 Z | kylych03 | 성질 급한 지학이 (IZhO13_crazy) | C++14 | 1 ms | 256 KB |
#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; for(i=1;i<=n;i++){ cin>>a[i]; if(a[i]!=i){ f=false; res=i; } } if(n==2 || f){ cout<<0<<endl; } else cout<<a[res]<<endl; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |