Q:gets函数没有了吗?
A:gets函数因为不能限制输入的长度,造成了历史上大量的缓冲区溢出漏洞,因此在最新版本中被彻底删除了,请使用fgets这个函数取代。
或者使用下面的宏定义来取代:
#define gets(S) fgets(S,sizeof(S),stdin)
Q:这个在线裁判系统使用什么样的编译器和编译选项?
A:系统运行于Debian/Ubuntu
Linux. 使用GNU GCC/G++ 作为C/C++编译器,
Free Pascal 作为pascal 编译器 ,用
openjdk-7 编译 Java. 对应的编译选项如下:
C: | gcc Main.c -o Main -fno-asm -Wall -lm --static -std=c99 -DONLINE_JUDGE
#pragma GCC optimize ("O2")可以手工开启O2优化 |
C++: | g++ -fno-asm -Wall -lm --static -std=c++14 -DONLINE_JUDGE -o Main Main.cc |
Pascal: | fpc Main.pas -oMain -O1 -Co -Cr -Ct -Ci |
Java: | javac -J-Xms32m -J-Xmx256m Main.java
*Java has 2 more seconds and 512M more memory when running and judging. |
编译器版本为(系统可能升级编译器版本,这里仅供参考):
Gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)
Glibc 2.31-0ubuntu9.2
Free Pascal Compiler version 3.0.4+dfsg-23 [2019/11/25] for x86_64
Openjdk 16
Python 3.8.5
Q:程序怎样取得输入、进行输出?
A:你的程序应该从标准输入 stdin('Standard Input')获取输入,并将结果输出到标准输出 stdout('Standard Output').例如,在C语言可以使用 'scanf' ,在C++可以使用'cin' 进行输入;在C使用 'printf' ,在C++使用'cout'进行输出.
用户程序不允许直接读写文件, 如果这样做可能会判为运行时错误 "Runtime Error"。
下面是 1000题的参考答案
C++:
#include <iostream> using namespace std; int main(){ int a,b; while(cin >> a >> b) cout << a+b << endl; return 0; }C:
#include <stdio.h> int main(){ int a,b; while(scanf("%d %d",&a, &b) != EOF) printf("%d\n",a+b); return 0; }PASCAL:
program p1001(Input,Output); var a,b:Integer; begin while not eof(Input) do begin Readln(a,b); Writeln(a+b); end; end.
import java.util.*; public class Main{ public static void main(String args[]){ Scanner cin = new Scanner(System.in); int a, b; while (cin.hasNext()){ a = cin.nextInt(); b = cin.nextInt(); System.out.println(a + b); } } }Python3
import io import sys sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf8') for line in sys.stdin: a = line.split() print(int(a[0]) + int(a[1]))为了方便使用本地文件调试,C/C++也可以用下面的方法来仅在本地运行时进行输入、输出重定向。
#ifdnef ONLINE_JUDGE freopen("sample.in", "r", stdin); freopen("sample.out", "w", stdout); #endif
Pending : 系统忙,你的答案在排队等待.
Pending Rejudge: 因为数据更新或其他原因,系统将重新判你的答案.
Compiling : 正在编译.
Running & Judging: 正在运行和判断.
Accepted : 程序通过!
Presentation Error : 答案基本正确,但是格式不对。
Wrong Answer : 答案不对,仅仅通过样例数据的测试并不一定是正确答案,一定还有你没想到的地方.
Time Limit Exceeded : 运行超出时间限制,检查下是否有死循环,或者应该有更快的计算方法。
Memory Limit Exceeded : 超出内存限制,数据可能需要压缩,检查内存是否有泄露。
Output Limit Exceeded: 输出超过限制,你的输出比正确答案长了两倍.
Runtime Error : 运行时错误,非法的内存访问,数组越界,指针漂移,调用禁用的系统函数。请点击后获得详细输出。
Compile Error : 编译错误,请点击后获得编译器的详细输出。
ZSTUOJ 2020.1.22 |