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 = 1; i < n; i++) {
if (i & 1) cout << "6 ";
else cout << "10 ";
}
cout << "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:35:09
- Judged At
- 2024-11-11 03:23:57
- Judged By
- Score
- 10
- Total Time
- 4ms
- Peak Memory
- 576.0 KiB