aboutsummaryrefslogtreecommitdiff
path: root/contests/Round900/B
diff options
context:
space:
mode:
Diffstat (limited to 'contests/Round900/B')
-rwxr-xr-xcontests/Round900/B/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/contests/Round900/B/main.cpp b/contests/Round900/B/main.cpp
index 3484ecd..a77ceb3 100755
--- a/contests/Round900/B/main.cpp
+++ b/contests/Round900/B/main.cpp
@@ -120,9 +120,9 @@ void solve() {
int n;
cin >> n;
vi v(n);
- v[0] = 3;
+ v[0] = 5;
for (int i = 1; i < n; i++) {
- v[i] = v[i - 1] + 7;
+ v[i] = v[i - 1] + 1;
}
for (int i = 0; i < n; i++) {
cout << v[i] << ' ';