aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-03-24 16:42:17 +0800
committercrupest <crupest@outlook.com>2021-03-24 16:42:17 +0800
commitfd283dd620b1836ce3057735fab1a4518ecba5c3 (patch)
treee54f6619dfe462d0e1c81507973db3eed23bca48
parent9be20acdbdb2fa72d60692def868c74ee026311b (diff)
downloadcrupest-fd283dd620b1836ce3057735fab1a4518ecba5c3.tar.gz
crupest-fd283dd620b1836ce3057735fab1a4518ecba5c3.tar.bz2
crupest-fd283dd620b1836ce3057735fab1a4518ecba5c3.zip
import(solutions): Add acwing 2066.
-rw-r--r--works/solutions/acwing/2066.cpp21
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;
+}