Skip to content

Commit

Permalink
fix: algo-rated always has >=3 problems
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkoooo committed Oct 15, 2023
1 parent d697d5f commit a4989a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atcoder-problems-backend/sql-client/src/rated_point_sum.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl RatedPointSumClient for PgPool {
WHERE
contests.start_epoch_second >= $1
AND contests.rate_change != $2
AND contest_problem_count.problem_count >= 2
AND contest_problem_count.problem_count >= 3
",
)
.bind(FIRST_AGC_EPOCH_SECOND)
Expand Down

0 comments on commit a4989a8

Please sign in to comment.