Skip to content

Commit ec87b08

Browse files
committed
✨ Add ABC422 (#2543)
1 parent c2252e2 commit ec87b08

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
@@ -100,6 +100,7 @@ const ABC_LIKE: ContestPrefix = {
100100
hhkb2020: 'HHKB プログラミングコンテスト 2020',
101101
panasonic2020: 'パナソニックプログラミングコンテスト 2020',
102102
jsc2021: '第二回日本最強プログラマー学生選手権',
103+
'jsc2025advance-final': '日本最強プログラマー学生選手権~Advance~',
103104
} as const;
104105
const abcLikePrefixes = new Set(getContestPrefixes(ABC_LIKE));
105106

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,10 @@ export const abcLike = [
207207
contestId: 'jsc2021',
208208
expected: ContestType.ABC_LIKE,
209209
}),
210+
createTestCaseForContestType('日本最強プログラマー学生選手権~Advance~')({
211+
contestId: 'jsc2025advance-final',
212+
expected: ContestType.ABC_LIKE,
213+
}),
210214
];
211215

212216
export const arcLike = [

0 commit comments

Comments
 (0)