Wrong Answer
Code
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int main(){
int t;
cin >> t;
while (t--){
int n, ans = 0;
cin >> n;
//vector<int> a(n + 2), vis(n + 2);
cout << "6 10 15 ";
for (int i = 18, j = 4; j <= n; i += 3){
int x = __gcd(6, i);
int y = __gcd(10, i);
int z = __gcd(15, i);
if (x > 1 && y > 1 && z > 1){
cout << i << ' ';
j++;
}
}
cout << 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:25:35
- Judged At
- 2024-11-11 03:23:00
- Judged By
- Score
- 10
- Total Time
- 15ms
- Peak Memory
- 988.0 KiB