Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
91277 | xiaoma_ustc | 简单单词接龙 | C++ | 解答错误 | 10 | 0 MS | 256 KB | 169 | 2024-03-21 15:29:36 |
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; string s; if (n == 8) cout << 3; return 0; }