Submission #891182


Source Code Expand

#include <iostream>
using namespace std;

int main(){
	int N;
	cin>>N;
	int a[100000];
	for(int i=0;i<N;i++){
		cin>>a[i];
		a[i]--;
	}

	int res = 0;
	for(int i=0;i<N;i++){
		for(int j=i+1;j<N;j++){
			if(a[i] == j && a[j]== i){
				res++;
			}
		}
	}
	cout<<res<<endl;
}

Submission Info

Submission Time
Task B - Friendly Rabbits
User nkshn
Language C++14 (GCC 5.4.1)
Score 0
Code Size 293 Byte
Status TLE
Exec Time 2102 ms
Memory 640 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 7
TLE × 8
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt
Case Name Status Exec Time Memory
0_00.txt AC 3 ms 256 KB
0_01.txt AC 3 ms 256 KB
0_02.txt AC 3 ms 256 KB
1_00.txt AC 3 ms 256 KB
1_01.txt TLE 2102 ms 640 KB
1_02.txt TLE 2102 ms 640 KB
1_03.txt TLE 2102 ms 640 KB
1_04.txt TLE 2102 ms 640 KB
1_05.txt TLE 2102 ms 640 KB
1_06.txt TLE 2102 ms 640 KB
1_07.txt TLE 2102 ms 640 KB
1_08.txt AC 474 ms 384 KB
1_09.txt TLE 2102 ms 512 KB
1_10.txt AC 1600 ms 512 KB
1_11.txt AC 97 ms 256 KB