| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 91278 | xiaoma_ustc | 简单单词接龙 | C++ | Wrong Answer | 20 | 0 MS | 248 KB | 197 | 2024-03-21 15:30:08 |
#include <iostream> #include <string> using namespace std; int main() { int n; cin >> n; string s; if (n == 8) cout << 3; else if (n == 10) cout << 5; return 0; }