-
Notifications
You must be signed in to change notification settings - Fork 11
test problems get api
Belikhun edited this page Jan 16, 2019
·
3 revisions
-
Permission:
everyone -
Require Logged In:
false
| Field | Method | Type | Description | Required |
|---|---|---|---|---|
| id | GET | string | ID đề | * |
| Field | Type | Description | Notes |
|---|---|---|---|
| id | string | ID đề | |
| name | string | Tên đề | |
| point | number | Điểm đề | |
| time | number | Thời gian chạy của đề | |
| type.inp | string | Dữ liệu vào | |
| type.out | string | Dữ liệu ra | |
| accept | array | Danh sách đuôi tệp chấp nhận | |
| image | string | Đường dẫn tới ảnh của đề | Nếu đề không có ảnh đính kèm, giá trị này sẽ không khả dụng |
| description | string | Mô tả đề | |
| test | array | Danh sách test |
{
"code": 0,
"status": 200,
"description": "Success!",
"user": null,
"data": {
"name": "Ước Số",
"point": "10",
"time": 1,
"type": {
"inp": "Bàn Phím",
"out": "Màn hình"
},
"accept": [
"pas",
"py"
],
"description": "Viết chương trình in ra tất cả các ước của một số n",
"test": [
{
"inp": "456",
"out": "1 2 3 4 6 8 12 19 24 38 57 76 114 152 228 456"
},
{
"inp": "535",
"out": "1 5 107 535"
}
],
"id": "bai1"
},
"runtime": 0.0033931732177734375
}