Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
shi-yang committed Mar 1, 2019
1 parent 28f40f7 commit 1b893ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion views/wiki/spj.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
<hr>
<p>简称 SPJ,这是针对用户输出的特判。比如,根据题面求解出来的答案可能存在多个,这样就无法定义一个准确的输出文件来判断用户是否正确,这时就需要 SPJ。或者允许用户的输出在某一精度范围内是正确的。</p>

<p>SPJ 是一个用CC++写的可执行程序,其的返回值决定着判断结果,成功返回(0)表示AC,其他非零值表示WA。</p>
<p>SPJ 是一个用CC++写的可执行程序,其返回值决定着判断结果,成功返回(0)表示AC,其他非零值表示WA。</p>
<p>SPJ 的编译参数为:g++ -fno-asm -std=c++11 -O2 ,即已经开启C++11以及O2优化。</p>
<p>请确保 SPJ 程序的正确运行,也<b>未调用与判题无关的系统函数</b>,当 SPJOJ 中编译出错或运行出错时,OJ 不会给出反馈。</p>

<p>下面给出两种写 SPJ 的方法,采用其中一种即可。</p>
<hr>
<h3>示例一:</h3>
<div class="pre"><p>#include &lt;stdio.h&gt;
Expand Down

0 comments on commit 1b893ce

Please sign in to comment.