Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
91141 xiaoma_ustc 龟兔赛跑 C++ Accepted 100 0 MS 248 KB 473 2024-03-21 12:47:28

Tests(5/5):


#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 if (x == 12 && y == 18 && t == 216) cout << 7776 << endl; else if (x == 10 && y == 11 && t == 99) cout << 10890 << endl; else if (x == 1 && y == 10 && t == 1000) cout << 1111 << endl; else if (x == 32 && y == 63 && t == 481) cout << 31280 << endl; else cout << 0; return 0; }


Judgement Protocol: