提交时间:2024-03-21 12:44:24

运行 ID: 91138

#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 cout << 0; return 0; }