| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 91158 | xiaoma_ustc | 任务调度 | C++ | Wrong Answer | 20 | 0 MS | 248 KB | 357 | 2024-03-21 13:15:53 |
#include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; if (a == 10 && b == 5) cout << 1698; else if (a == 96 && b == 107) cout << 392; else if (a == 99 && b == 7) cout << 453; else if (a == 10 && b == 37) cout << 27; else if (a == 10 && b == 1) cout << 23; else cout << 0; return 0; }