| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 77686 | sh25_shenpy | 单词接龙 | C++ | 解答错误 | 0 MS | 244 KB | 216 | 2025-12-26 14:39:39 |
#include <bits/stdc++.h> using namespace std ; int n ; string s ; int sum = 0 ; int main() { cin >> n ; while(n--) { cin >> s ; sum += s.length() ; } return 0 ; }