返回小组 开始 2026-03-07 13:00:00

3.7呈贡下午小测

结束 2026-03-07 15:00:00
Contest is over.
当前 2026-03-16 11:04:04

撤除

include <bits/stdc++.h>

using namespace std;

int main() {

string a;
getline(cin, a);
string b;
for (int i = 0; i < a.length(); i++) {
	if (a[i] % 3 == 0)
		continue;
	b = b + a[i];
}
sort(b.begin(), b.end());
cout << b;
return 0;

}


YIYI  •  8天前

比赛已结束。