File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
atcoder-problems-frontend/src Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ export const useMergedProblemMap = () => {
127
127
}
128
128
129
129
const contestType = classifyContest ( contest ) ;
130
- if ( contestType === "AHC" ) {
130
+ if ( contestType === "AHC" || contestType === "Marathon" ) {
131
131
map . set ( problem . id , { ...problem , point : undefined } ) ;
132
132
} else {
133
133
map . set ( problem . id , problem ) ;
@@ -303,7 +303,7 @@ export const useProblemModelMap = () => {
303
303
return ;
304
304
}
305
305
const contestType = classifyContest ( contest ) ;
306
- if ( contestType === "AHC" ) {
306
+ if ( contestType === "AHC" || contestType === "Marathon" ) {
307
307
return ;
308
308
}
309
309
Original file line number Diff line number Diff line change @@ -56,7 +56,10 @@ export const classifyContest = (
56
56
if ( / ^ a g c \d { 3 } $ / . exec ( contest . id ) ) {
57
57
return "AGC" ;
58
58
}
59
- if ( / ^ a h c \d { 3 } $ / . exec ( contest . id ) ) {
59
+ if (
60
+ / ^ a h c \d { 3 } $ / . exec ( contest . id ) ||
61
+ [ "toyota2023summer-final" ] . includes ( contest . id )
62
+ ) {
60
63
return "AHC" ;
61
64
}
62
65
@@ -82,6 +85,7 @@ export const classifyContest = (
82
85
contest . id
83
86
) ||
84
87
[
88
+ "toyota2023summer-final-open" ,
85
89
"genocon2021" ,
86
90
"stage0-2021" ,
87
91
"caddi2019" ,
You can’t perform that action at this time.
0 commit comments