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