Skip to content

Commit

Permalink
chore(problem): change default memory limit to 256 MB (#536)
Browse files Browse the repository at this point in the history
  • Loading branch information
kadeksuryam authored Oct 18, 2023
1 parent c438f10 commit c8c3209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

public class DefaultConfig {
public static final int TIME_LIMIT = 2000;
public static final int MEMORY_LIMIT = 65536;
public static final int MEMORY_LIMIT = 262144;

private DefaultConfig() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ void get_programming_problem_worksheet() {
.build())
.limits(new ProblemLimits.Builder()
.timeLimit(2000)
.memoryLimit(65536)
.memoryLimit(262144)
.build())
.submissionConfig(new ProblemSubmissionConfig.Builder()
.sourceKeys(Map.of("source", "Source code"))
Expand Down

0 comments on commit c8c3209

Please sign in to comment.