diff options
author | crupest <crupest@outlook.com> | 2021-03-24 16:42:17 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-03-24 16:42:17 +0800 |
commit | cc5b736792d3c95ce97456ebf78c5a1641c4fe9d (patch) | |
tree | 5b31bbb0f8d4b13db5487304d08e62de21296841 | |
parent | 686341a129eed94f96dc6da6c267591516f0af1f (diff) | |
download | crupest-cc5b736792d3c95ce97456ebf78c5a1641c4fe9d.tar.gz crupest-cc5b736792d3c95ce97456ebf78c5a1641c4fe9d.tar.bz2 crupest-cc5b736792d3c95ce97456ebf78c5a1641c4fe9d.zip |
import(solutions): Add acwing 2066.
-rw-r--r-- | works/solutions/acwing/2066.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/works/solutions/acwing/2066.cpp b/works/solutions/acwing/2066.cpp new file mode 100644 index 0000000..7a6132b --- /dev/null +++ b/works/solutions/acwing/2066.cpp @@ -0,0 +1,21 @@ +#include <cctype>
+#include <iostream>
+
+int main() {
+ std::string input;
+ std::cin >> input;
+ std::string result;
+
+ for (int i = 0; i < input.size(); i++) {
+ if (std::isalpha(input[i])) {
+ result.push_back(input[i]);
+ } else {
+ int c = input[i] - '1';
+ result.append(c, input[i - 1]);
+ }
+ }
+
+ std::cout << result;
+
+ return 0;
+}
|