core: 添加IOI赛制

pull/21/head
undefined 4 years ago
parent ac40fa9da8
commit e8dcd97561

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "2.13.45",
"version": "2.13.46",
"bin": "bin/hydrooj.js",
"main": "dist/loader.js",
"typings": "dist/loader.d.ts",

@ -205,6 +205,13 @@ const oi: ContestRule = {
rank: (tsdocs) => ranked(tsdocs, (a, b) => a.score === b.score),
};
const ioi: ContestRule = {
...oi,
TEXT: 'IOI',
showRecord: () => true,
showScoreboard: () => true,
};
const homework: ContestRule = {
TEXT: 'Assignment',
check: () => { },
@ -347,7 +354,7 @@ const homework: ContestRule = {
};
export const RULES: ContestRules = {
acm, oi, homework,
acm, oi, homework, ioi,
};
function _getStatusJournal(tsdoc) {

Loading…
Cancel
Save