Skip to content

Commit

Permalink
set default polygon problem points to 0.01
Browse files Browse the repository at this point in the history
  • Loading branch information
leduythuccs committed Dec 19, 2024
1 parent 55bc20a commit 324a39c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion judge/utils/codeforces_polygon.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ def update_or_create_problem(self):
'description': self.meta['description'],
'partial': self.meta['partial'],
'group': ProblemGroup.objects.order_by('id').first(), # Uncategorized
'points': 0.0,
'points': 0.01,
})
problem.save()
problem.allowed_languages.set(Language.objects.filter(include_in_problem=True))
Expand Down

0 comments on commit 324a39c

Please sign in to comment.