Skip to content

Commit 6ad4821

Browse files
committed
feat: Add tasks for ARC-like (#2986)
1 parent 6adb23d commit 6ad4821

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/lib/utils/contest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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.
101101
const 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;
130131
const arcLikePrefixes = new Set(getContestPrefixes(ARC_LIKE));
131132

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

294298
export const agcLike = [

0 commit comments

Comments
 (0)