| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 7605 | A班-许锘林 | 夏令营小旗手 | C++ | Accepted | 100 | 2 MS | 348 KB | 200 | 2025-03-17 20:49:01 |
#include <bits/stdc++.h> using namespace std; int main() { char a[100010]; cin>>a; int temp = 0; for(int i = 0;i < strlen(a);i++) { temp += int (a[i]); } cout<<temp; return 0; }