Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions prisma/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17069,4 +17069,11 @@ export const tasks = [
name: 'Consistent Unit System',
title: '2207. Consistent Unit System',
},
{
id: '2279',
contest_id: 'AOJ-KUPC2011',
problem_index: 'I',
name: 'Mountain',
title: 'I. Mountain',
},
];
1 change: 1 addition & 0 deletions src/lib/contests/fixtures/contest_name_and_task_index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,7 @@ const AOJ_UNIVERSITY_TEST_DATA = [
expected: 'AOJ 3183(HUPC 2020 in HUPC 2020 Day3)',
},
{ contestId: 'AOJ-UTPC2010', taskTableIndex: '2207', expected: 'AOJ 2207(UTPC 2010)' },
{ contestId: 'AOJ-KUPC2011', taskTableIndex: 'I', expected: 'AOJ I(KUPC 2011)' },
];

export const aojUniversity = AOJ_UNIVERSITY_TEST_DATA.map(
Expand Down
4 changes: 4 additions & 0 deletions src/lib/contests/fixtures/contest_name_labels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,4 +324,8 @@ export const aojUniversity = [
contestId: 'AOJ-UTPC2010',
expected: '(UTPC 2010)',
}),
createTestCaseForContestNameLabel('AOJ, KUPC 2011')({
contestId: 'AOJ-KUPC2011',
expected: '(KUPC 2011)',
}),
];
1 change: 1 addition & 0 deletions src/lib/contests/fixtures/contest_type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -740,6 +740,7 @@ const aojUniversityContestData = [
{ name: 'AOJ, HUPC 2019 in HUPC 2019 Day2', contestId: 'AOJ-HUPC2019-in-HUPC2019-day2' },
{ name: 'AOJ, UAPC 2018 in RUPC 2018 Day2', contestId: 'AOJ-UAPC2018-in-RUPC2018-day2' },
{ name: 'AOJ, UTPC 2010', contestId: 'AOJ-UTPC2010' },
{ name: 'AOJ, KUPC 2011', contestId: 'AOJ-KUPC2011' },
Comment thread
coderabbitai[bot] marked this conversation as resolved.
];

export const aojUniversity = aojUniversityContestData.map(({ name, contestId }) =>
Expand Down
Loading