Skip to content

Commit

Permalink
フロントエンドにおけるAlgo Ratedの判定条件をバックエンドと同等に修正
Browse files Browse the repository at this point in the history
  • Loading branch information
hotate29 committed Feb 8, 2024
1 parent 37e6478 commit d42eb29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atcoder-problems-frontend/src/utils/ContestClassifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const isRatedContest = (
return (
contest.rate_change !== "-" &&
contest.start_epoch_second >= AGC_001_START &&
problemCount >= 2
problemCount >= 3
);
};

Expand Down

0 comments on commit d42eb29

Please sign in to comment.