API Response (JSON)
{
"problem": {
"name": "[语言月赛202302] 牵连的世界 (Easy Version)",
"description": {
"content": "下面程序想要实现的功能为: > 输入 $n$ 和 $n$ 个数,统计其中奇数的个数。 ```cpp #include <iostream> using namespace std; int main() { int n, ans = 0; cin >> n; for(int i = 1, x; i <= n; i++) { cin >> x; if(x % 2 =",
"description_type": "Markdown"
},
"platform": "Luogu",
"limit": {
"time_limit": 1000,
"memory_limit": 131072
},
"difficulty": {
"LuoguStyle": "P1"
},
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "LGB3714"
},
"statements": [
{
"statement_type": "Markdown",
"content": "下面程序想要实现的功能为:\n\n> 输入 $n$ 和 $n$ 个数,统计其中奇数的个数。\n\n```cpp\n#include <iostream>\nusing namespace std;\n\nint main() {\n int n, ans = 0;\n cin >> n;\n for(int i = 1, x; i <= n; i++) {\n cin >> x;\n if(x % 2 =...",
"is_translate": false,
"language": "English"
}
]
}