| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 2295 | 九亿丶孤酒⌒ | 夏令营小旗手 | C++ | Accepted | 100 | 0 MS | 256 KB | 191 | 2019-11-17 08:50:20 |
#include<bits/stdc++.h> using namespace std; int main(){ char a[1000]; scanf("%s",&a); int num=0; for(int i=0;i<=strlen(a);i++){ num+=a[i]; } printf("%d",num); return 0; }