API Response (JSON)
{
"problem": {
"name": "判断能否被 3,5,7 整除",
"description": {
"content": "给定一个整数 $x$,判断它能否被 $3$,$5$,$7$ 整除,并输出以下信息: 1、能同时被 $3,5,7$ 整除(直接输出 `3 5 7`,每个数中间一个空格); 2、只能被其中两个数整除(按从小到大的顺序输出两个数,例如:`3 5` 或者 `3 7` 或者 `5 7`,中间用空格分隔); 3、只能被其中一个数整除(输出这个除数); 4、不能被任何数整除,输出小写字符 `n`。",
"description_type": "Markdown"
},
"platform": "Luogu",
"limit": {
"time_limit": 1000,
"memory_limit": 524288
},
"difficulty": {
"LuoguStyle": "P1"
},
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "LGB2043"
},
"statements": [
{
"statement_type": "Markdown",
"content": "给定一个整数 $x$,判断它能否被 $3$,$5$,$7$ 整除,并输出以下信息:\n\n1、能同时被 $3,5,7$ 整除(直接输出 `3 5 7`,每个数中间一个空格);\n\n2、只能被其中两个数整除(按从小到大的顺序输出两个数,例如:`3 5` 或者 `3 7` 或者 `5 7`,中间用空格分隔);\n\n3、只能被其中一个数整除(输出这个除数);\n\n4、不能被任何数整除,输出小写字符 `n`。\n\n#...",
"is_translate": false,
"language": "English"
}
]
}