Accepted
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
string s;
cin >> s;
int res = 0;
for (auto it : s) {
if (isdigit(it)) {
res += it - '0';
}
}
cout << res << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1072 Valuable digit
- Contest
- Brain Booster #4
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-14 15:31:33
- Judged At
- 2024-11-11 03:26:05
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 516.0 KiB