-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(be): implement calculate contest participants score #1271
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
gyunseo
changed the title
feat(be): 1238-calc-contest-participants-score
feat(be): implement calculate contest participants score
Jan 29, 2024
4 tasks
conflict만 해결해주시면 리뷰할게요오 ! |
BREAKING CHANGE: add prisma migration sql script BREAKING CHANGE: add latest_accepted_time column and change cpu_time column to int
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
contest에 참여 중인 user가 problem에 대해 submission을 하면, contest_record에서 user의 점수를 계산하는 로직을 구현했습니다.
Additional context
DB table 변경을 했습니다.
ContestRecord
table에서 User가 Contest에서 가장 마지막으로 임의의 Problem에 대해 AC를 받은 Date,latestAcceptedTime
field를 추가했습니다.SubmissionResult
table에서cpuTime
의 Data type을 PostgresqlBigInt
에서 PostgresqlInt
로 바꿨습니다. (Do not know how to serialize a BigInt 잇슈가 있었습니다. cpuTime이 Int여도 21억ms정도라서 24.305555555556 Days 정도 걸려서, 이정도면 Time Limit으로 충분할 것 같습니다.)cd iris sudo -E go run main.go
close #1238
Before submitting the PR, please make sure you do the following
fixes #123
).