our @ISA = qw/Gruntmaster::Page::Base/;
our $VERSION = '0.001';
-use constant FORMATS => [qw/C CPP JAVA PERL PYTHON/];
+use constant FORMATS => [qw/C CPP JAVA PASCAL PERL PYTHON/];
sub _generate{
my ($self, $htc, $lang, $env, $contest, $id) = @_;
debug $env => "language is '$lang', contest is '$contest', id is '$id'";
my $user = $env->{REMOTE_USER};
- if ($contest && $user) {
+ if ($contest && $user && time >= contest_start $contest) {
local $Gruntmaster::Data::contest = $contest;
mark_open $id, $user;
debug $env => "Marking problem $id of contest $contest open by $user";
$htc->param(cansubmit => 1);
if ($contest) {
- $htc->param(cansubmit => time <= contest_end $contest);
+ $htc->param(cansubmit => (time <= contest_end $contest));
$htc->param(contest => $contest);
}
$htc->param(formats => FORMATS);
$htc->param(author => problem_author $id);
$htc->param(owner => problem_owner $id);
$htc->param(statement => problem_statement $id);
+ $htc->param(timelimit => problem_timeout $id);
}
sub vary { 'Authorization' }
use constant LEVEL_VALUES => {
beginner => 100,
easy => 250,
- medium => 500,
+ medium => 600,
hard => 1000,
};
my (%scores, %tries);
for (1 .. jobcard) {
if ($Gruntmaster::Data::contest) {
- $tries{job_user()}{job_problem()}++;
- $scores{job_user()}{job_problem()} = job_result() ? 0 : calc_score (job_user(), job_problem(), job_date(), $tries{job_user()}{job_problem()}, $totaltime) if job_date() > $start;
+ $scores{job_user()}{job_problem()} = job_result() ? 0 : calc_score (job_user(), job_problem(), job_date(), $tries{job_user()}{job_problem()}++, $totaltime) if job_date() > $start;
} elsif (defined job_user && defined job_problem && defined job_result) {
if (defined job_result_text && job_result_text =~ m/^(\scores+)/) {
$scores{job_user()}{job_problem()} = $ct;