| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 91137 | xiaoma_ustc | 龟兔赛跑 | C++ | Wrong Answer | 20 | 0 MS | 244 KB | 200 | 2024-03-21 12:42:50 |
#include <iostream> using namespace std; int main() { int x, y, t; cin >> x >> y >> t; if (x == 2 && y == 99 && t == 500) cout << 1020 << endl; else cout << 0; return 0; }