Skip to content
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

Update problem.php #1044

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions trunk/web/template/syzoj/problem.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,21 @@
</h1>
</div>
<div class="row" style="margin-top: -15px">
<span class="ui label"><?php echo "文件提交" ?>:<?php
if(file_exists($solution_file)){
echo("<span class='red-bold'>文件名:$filename</span>");
}else{
echo("<span class='red-bold'>无需freopen</span>");
}
?></span>
<style>
.red-bold {
color: red;
font-weight: bold;
}
</style>


<span class="ui label"><?php echo $MSG_Memory_Limit ?>:<?php echo $row['memory_limit']; ?> MB</span>
<span class="ui label"><?php echo $MSG_Time_Limit ?>:<?php echo $row['time_limit']; ?> S</span>
<!-- <span class="ui label">标准输入输出</span> -->
Expand Down
Loading