0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 14:58:48 +00:00

P8. Special Judge 测试

https://hydro.ac/d/system_test/record/61a1868253a50c11fd2bd7b8
This commit is contained in:
Baoshuo Ren 2021-11-27 09:15:57 +08:00 committed by Baoshuo Ren
parent 20392031d1
commit e4fca64680
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68
43 changed files with 151 additions and 0 deletions

13
Hydro/system_test/8/8.cpp Normal file
View File

@ -0,0 +1,13 @@
#include <bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
int a, b;
int main() {
cin >> a >> b;
cout << a + b << endl;
return 0;
}

BIN
Hydro/system_test/8/data/aplusb1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb11.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb11.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb12.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb12.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb13.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb13.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb14.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb14.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb15.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb15.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb16.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb16.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb17.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb17.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb18.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb18.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb19.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb19.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb20.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb20.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Hydro/system_test/8/data/aplusb9.out (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,11 @@
#include "testlib.h"
int main(int argc, char* argv[]) {
setName("compares two signed integers");
registerTestlibCmd(argc, argv);
int ja = ans.readInt();
int pa = ouf.readInt();
if (ja != pa)
quitf(_wa, "expected %d, found %d", ja, pa);
quitf(_ok, "answer is %d", ja);
}

View File

@ -0,0 +1,7 @@
type: default
score: 5
time: 100ms
memory: 64m
checker_type: testlib
checker: checker.cc