Wrong Answer
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int n;
cin >> n;
for (int i = 3; i < n; i++) {
if (i & 1) cout << "2 ";
else cout << "4 ";
}
cout << "6 10 15\n";
}
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:29:13
- Judged At
- 2024-11-11 03:24:08
- Judged By
- Score
- 10
- Total Time
- 6ms
- Peak Memory
- 688.0 KiB