Skip to content

Commit 26b12ab

Browse files
authored
Merge pull request #2098 from AtCoder-NoviSteps/#2097
✨ Add task for digit DP (#2097)
2 parents ad0b86d + 77488e0 commit 26b12ab

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/lib/utils/contest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ const atCoderUniversityPrefixes = getContestPrefixes(ATCODER_UNIVERSITIES);
165165
*/
166166
const ATCODER_OTHERS: ContestPrefix = {
167167
chokudai_S: 'Chokudai SpeedRun',
168+
'code-festival-2014-quala': 'Code Festival 2014 予選 A',
168169
'code-festival-2014-qualb': 'Code Festival 2014 予選 B',
169170
'code-festival-2014-final': 'Code Festival 2014 決勝',
170171
'code-festival-2015-morning-middle': 'CODE FESTIVAL 2015 あさぷろ Middle',

src/test/lib/utils/test_cases/contest_type.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,10 @@ export const atCoderOthers = [
307307
contestId: 'chokudai_S002',
308308
expected: ContestType.OTHERS,
309309
}),
310+
createTestCaseForContestType('CODE FESTIVAL 2014 qual A')({
311+
contestId: 'code-festival-2014-quala',
312+
expected: ContestType.OTHERS,
313+
}),
310314
createTestCaseForContestType('CODE FESTIVAL 2014 qual B')({
311315
contestId: 'code-festival-2014-qualb',
312316
expected: ContestType.OTHERS,

0 commit comments

Comments
 (0)