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 | fd283dd620b1836ce3057735fab1a4518ecba5c3 (patch) | |
tree | e54f6619dfe462d0e1c81507973db3eed23bca48 /works/solutions/acwing/2066.cpp | |
parent | 9be20acdbdb2fa72d60692def868c74ee026311b (diff) | |
download | crupest-fd283dd620b1836ce3057735fab1a4518ecba5c3.tar.gz crupest-fd283dd620b1836ce3057735fab1a4518ecba5c3.tar.bz2 crupest-fd283dd620b1836ce3057735fab1a4518ecba5c3.zip |
import(solutions): Add acwing 2066.
Diffstat (limited to 'works/solutions/acwing/2066.cpp')
-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;
+}
|