add test data

This commit is contained in:
2024-07-24 11:54:23 +00:00
parent 6c43aa77fb
commit 69adad54ad
55 changed files with 10071 additions and 0 deletions

14
test/testcases/io.inc Normal file
View File

@ -0,0 +1,14 @@
int judgeResult = 0;
const int Mod = 253;
void printInt(int x) {
judgeResult ^= x;
judgeResult += 173;
}
void printStr(const char *str) {
for (const char *cur = str; *cur != 0; ++cur) {
judgeResult ^= *cur;
judgeResult += 521;
}
}