Skip to content

Commit a4989a8

Browse files
committed
fix: algo-rated always has >=3 problems
1 parent d697d5f commit a4989a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

atcoder-problems-backend/sql-client/src/rated_point_sum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl RatedPointSumClient for PgPool {
3030
WHERE
3131
contests.start_epoch_second >= $1
3232
AND contests.rate_change != $2
33-
AND contest_problem_count.problem_count >= 2
33+
AND contest_problem_count.problem_count >= 3
3434
",
3535
)
3636
.bind(FIRST_AGC_EPOCH_SECOND)

0 commit comments

Comments
 (0)