| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19526 | 张志鹏 | 夏令营小旗手 | C++ | Accepted | 100 | 0 MS | 256 KB | 191 | 2021-05-16 16:42:49 |
#include<bits/stdc++.h> using namespace std; string Name; int Answer; int main(){ cin>>Name; for(int i=0;i<=Name.length();i++){ Answer+=Name[i]; } cout<<Answer; return 0; }