# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
90965 | 2018-12-25T10:33:06 Z | kylych03 | Crazy old lady (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
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |