aboutsummaryrefslogtreecommitdiff
path: root/01_introductory_problems/permutations_1070.cpp
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2026-07-06 19:08:08 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2026-07-06 19:08:08 +0200
commit96254947699986c59f0dc63d69fd4b76bd3ed43e (patch)
tree6c4dca945d7f7427c48be234d827fe4d33be02c5 /01_introductory_problems/permutations_1070.cpp
downloadcses-96254947699986c59f0dc63d69fd4b76bd3ed43e.tar.gz
cses-96254947699986c59f0dc63d69fd4b76bd3ed43e.zip
Initial commit
Diffstat (limited to '')
-rw-r--r--01_introductory_problems/permutations_1070.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/01_introductory_problems/permutations_1070.cpp b/01_introductory_problems/permutations_1070.cpp
new file mode 100644
index 0000000..4438795
--- /dev/null
+++ b/01_introductory_problems/permutations_1070.cpp
@@ -0,0 +1,15 @@
1#include <iostream>
2
3int main() {
4 int n;
5 std::cin >> n;
6 if (n == 2 || n == 3) {
7 std::cout << "NO SOLUTION" << std::endl;
8 } else {
9 for (int i = 2; i <= n; i += 2)
10 std::cout << i << " ";
11 for (int i = 1; i <= n; i += 2)
12 std::cout << i << " ";
13 std::cout << std::endl;
14 }
15}

Generated with cgit - Back to sebastiano.tronto.net