Wrong Answer
Code
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main(){
int t;
cin >> t;
while (t--){
int n, i,j, mx = 0;
cin >> n;
//vector<int> a(n + 2), vis(n + 2);
cout << "6 10 15 ";
for ( i = 18, j = 4; j <= n; i++){
int x = __gcd(6, i);
int y = __gcd(10, i);
if (x > 1 && y > 1){
cout << i << ' ';
j++; //mx = i;
}
}
cout << endl; //mx<<" "<<j<<endl;
}
}
Information
- Submit By
- Type
- Submission
- Problem
- P1070 Strange Sequences
- Contest
- Brain Booster #4
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-07-14 17:41:31
- Judged At
- 2024-11-11 03:22:46
- Judged By
- Score
- 10
- Total Time
- 13ms
- Peak Memory
- 956.0 KiB