CSES - Putka Open 2020 – 4/5 - Results
Submission details
Task:Tekijät
Sender:AtskaFin
Submission time:2020-11-06 19:43:50 +0200
Language:C++17
Status:READY
Result:12
Feedback
groupverdictscore
#1ACCEPTED12
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2, 3details
#2ACCEPTED0.01 s1, 2, 3details
#3--2, 3details
#4--3details
#5--3details
#6--3details
#7--3details

Code

#include <iostream>
#include <vector>

using namespace std;

int n;
vector<int> v;

int syt(int a, int b) {
  if (b == 0) return a;
  else return syt(b, a%b);
}

int main() {
  cin >> n;
  v.resize(n);
  for (auto& i : v) cin >> i;

  int c = 0;
  for (int i = 0; i < n; i++) {
    for (int j = i+1; j < n; j++) {
      if (syt(v[i], v[j]) == 1) c++;
    }
  }

  cout << c << "\n";
}

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
100
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
3043

user output
3043

Test 2

Group: 1, 2, 3

Verdict: ACCEPTED

input
100
71 19 26 18 57 78 80 89 31 26 ...

correct output
3086

user output
3086

Test 3

Group: 2, 3

Verdict:

input
100000
66 87 90 67 93 89 57 29 34 4 8...

correct output
3044751906

user output
(empty)

Test 4

Group: 3

Verdict:

input
100000
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
3039650753

user output
(empty)

Test 5

Group: 3

Verdict:

input
100000
238907 151373 522599 885657 37...

correct output
3031155756

user output
(empty)

Test 6

Group: 3

Verdict:

input
100000
510510 510510 510510 510510 51...

correct output
0

user output
(empty)

Test 7

Group: 3

Verdict:

input
100000
999983 999983 999983 999983 99...

correct output
0

user output
(empty)