| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19751 | 陈路垚 | 夏令营小旗手 | C++ | Accepted | 100 | 0 MS | 252 KB | 170 | 2021-05-22 13:48:18 |
#include<bits/stdc++.h> using namespace std; int main() { char a[100]; int i,ans=0; cin>>a; for(i=0;i<strlen(a);++i) ans+=int(a[i]); cout<<ans; return 0; }