API Response (JSON)
{
"problem": {
"name": "[语言月赛202303] Hack Problem P",
"description": {
"content": "下面程序想要实现的功能为: > 给出两个正整数 $x, y$,保证它们的最小公倍数($\\mathrm{lcm}$)不大于 $10^9$。求它们的最小公倍数。 ```cpp #include <iostream> #include <algorithm> int main() { int x, y; std::cin >> x >> y; int ans = x * y / std",
"description_type": "Markdown"
},
"platform": "Luogu",
"limit": {
"time_limit": 1000,
"memory_limit": 524288
},
"difficulty": {
"LuoguStyle": "P2"
},
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "LGB3727"
},
"statements": [
{
"statement_type": "Markdown",
"content": "下面程序想要实现的功能为:\n\n> 给出两个正整数 $x, y$,保证它们的最小公倍数($\\mathrm{lcm}$)不大于 $10^9$。求它们的最小公倍数。\n\n```cpp\n#include <iostream>\n#include <algorithm>\n\nint main() {\n int x, y;\n std::cin >> x >> y;\n int ans = x * y / std...",
"is_translate": false,
"language": "English"
}
]
}