| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19775 | 梅煦洋 | 夏令营小旗手 | C++ | Accepted | 100 | 0 MS | 256 KB | 187 | 2021-05-22 16:43:15 |
#include<bits/stdc++.h> using namespace std; int main(){ int num=0; string s; cin>>s; for(int i=0;i<=s.length();i++){ num+=s[i]; } cout<<num<<endl; return 0; }