Wrong Answer
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int n;
cin >> n;
cout << "6 10 15 ";
for (int i = 3; i < n; i++) {
if (i & 1) cout << "3 ";
else cout << "6 ";
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1070 Strange Sequences
- Contest
- Brain Booster #4
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-14 16:25:55
- Judged At
- 2024-11-11 03:24:12
- Judged By
- Score
- 0
- Total Time
- 4ms
- Peak Memory
- 576.0 KiB