File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
test/lib/utils/test_cases Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ export const classifyContest = (contest_id: string) => {
9696 return null ;
9797} ;
9898
99- // HACK: As of September 2025, the following contests are applicable.
99+ // HACK: As of December 2025, the following contests are applicable.
100100// Note: The classification logic may need to be revised when new contests are added.
101101const ABC_LIKE : ContestPrefix = {
102102 'tenka1-2017-beginner' : 'Tenka1 Programmer Beginner Contest 2017' ,
@@ -126,6 +126,7 @@ const ARC_LIKE: ContestPrefix = {
126126 keyence2020 : 'キーエンス プログラミング コンテスト 2020' ,
127127 keyence2021 : 'キーエンス プログラミング コンテスト 2021' ,
128128 'jsc2019-qual' : '第一回日本最強プログラマー学生選手権-予選-' ,
129+ 'nikkei2019-qual' : '全国統一プログラミング王決定戦予選' ,
129130} as const ;
130131const arcLikePrefixes = new Set ( getContestPrefixes ( ARC_LIKE ) ) ;
131132
Original file line number Diff line number Diff line change @@ -289,6 +289,10 @@ export const arcLike = [
289289 contestId : 'jsc2019-qual' ,
290290 expected : ContestType . ARC_LIKE ,
291291 } ) ,
292+ createTestCaseForContestType ( 'NIKKEI2019 QUAL' ) ( {
293+ contestId : 'nikkei2019-qual' ,
294+ expected : ContestType . ARC_LIKE ,
295+ } ) ,
292296] ;
293297
294298export const agcLike = [
You can’t perform that action at this time.
0 commit comments