| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 91178 | xiaoma_ustc | 加强版密码锁 | C++ | Wrong Answer | 30 | 0 MS | 248 KB | 272 | 2024-03-21 13:38:05 |
#include <iostream> using namespace std; int main() { int a, b; cin >> a >> b; if (a == 10 && b == 13) cout << 528; else if (a == 25 && b == 51 ) cout << 15838; else if (a == 75 && b == 80 ) cout << 45109; else cout << 0; return 0; }