4 条题解
-
0
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { string s; cin >> s; // ll lens = s.size(); string ans = ""; char t = s[0]; ll cnt = 0; for (int i = 0; i < s.size(); i++) { if (i - 1 >= 0 && s[i] != t) { ans += t; ans += to_string(cnt); cnt = 0; } t = s[i]; cnt++; } ans += t; ans += to_string(cnt); cout << ans << endl; return 0; }
- 1
信息
- ID
- 65
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 3
- 标签
- 递交数
- 155
- 已通过
- 84
- 上传者