Submission #1165624


Source Code Expand

number = int(input())
a = list(map(int,input().split()))
count = 0
for i in range(number):
    for j in range(i,number):
        if a[i] ==j+1 and a[j] == i+1:
            count += 1
print(int(count))

Submission Info

Submission Time
Task B - Friendly Rabbits
User king_of_emotion
Language Python (3.4.3)
Score 0
Code Size 207 Byte
Status TLE
Exec Time 2104 ms
Memory 13940 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 4
TLE × 11
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 17 ms 2940 KB
0_01.txt AC 17 ms 2940 KB
0_02.txt AC 17 ms 2940 KB
1_00.txt AC 17 ms 2940 KB
1_01.txt TLE 2104 ms 13880 KB
1_02.txt TLE 2104 ms 13940 KB
1_03.txt TLE 2104 ms 13812 KB
1_04.txt TLE 2104 ms 13812 KB
1_05.txt TLE 2104 ms 13812 KB
1_06.txt TLE 2104 ms 13880 KB
1_07.txt TLE 2104 ms 13812 KB
1_08.txt TLE 2104 ms 6768 KB
1_09.txt TLE 2104 ms 12008 KB
1_10.txt TLE 2104 ms 10596 KB
1_11.txt TLE 2103 ms 4652 KB