Accepted
Code
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
int arr[n];
for (int i = 0; i < n; i++)
cin >> arr[i];
int cnt = 0;
for (int i = 0; i < n; i++)
{
for (int j = i + 1; j < n; j++)
{
if (arr[i] * arr[j] % (arr[i] + arr[j]) == 0)
{
cnt++;
}
}
}
cout << cnt << endl;
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1131 Count Special Pairs
- Contest
- LU IUJPC : Sylhet Division 2024, Mock Round
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-12-07 10:13:38
- Judged At
- 2024-12-07 10:13:38
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 776.0 KiB