-
Notifications
You must be signed in to change notification settings - Fork 7
Subtasks
Massimo edited this page Feb 2, 2019
·
1 revision
测试点分组用 json 格式描述,下面有一个范例。
你需要写一个数组,数组里的每一个 Object 表示一个测试组。对于每一个测试组
score
表示这个测试组所占分值;
type
表示这组计分方式,min
、mul
、ave
分别表示取最小值、取乘积和取平均数;
testcases
是一个字符串数组,表示了这个测试组所包含测试点的文件名。
注意:
- 所有测试组的分数和必须是 100 分,否则评测结果将会变成 0 分。
- 对于每道题目,修改了分组之后要重测,否则之前的提交的分数不会更新。
[
{
"score": 70,
"type": "min",
"testcases": [
"data1",
"data3"
]
},
{
"score": 20,
"type": "mul",
"testcases": [
"data2",
"data4"
]
},
{
"score": 10,
"type": "ave",
"testcases": [
"data1"
]
}
]