diff options
| author | omagdy7 <omar.professional8777@gmail.com> | 2023-09-30 14:51:08 +0300 |
|---|---|---|
| committer | omagdy7 <omar.professional8777@gmail.com> | 2023-09-30 14:51:08 +0300 |
| commit | 1e83036c3ff40310af6cf0d915ad1621d2eeeb83 (patch) | |
| tree | c36d6a9f65cfdd7b631ea825111c684c1c22e6c2 /contests | |
| parent | 878180803f64f49062f5f7d9359ad711051f27d9 (diff) | |
| download | competitive-programming-1e83036c3ff40310af6cf0d915ad1621d2eeeb83.tar.xz competitive-programming-1e83036c3ff40310af6cf0d915ad1621d2eeeb83.zip | |
Separated templates for debugging in a separate file
Diffstat (limited to 'contests')
| -rwxr-xr-x | contests/Round900/B/main.cpp | 4 |
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] << ' '; |
