Skip to content

ctrl-alt-Defeat-icpc/checker-manual-iqs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Manual converted chekcer file (domjudge to quera)

domjudge chekcer is based on Mike Mirzayanov testlib and I conveted that manually.

list

folder name uses
sut2024 icpc 2024 (asia west - onsite - Tehran)


quera test case checker example

/*
 * tester.cpp
 */
 
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, char const *argv[])
{
 
	ifstream test_in(argv[1]);    /* This stream reads from test's input file   */
	ifstream test_out(argv[2]);   /* This stream reads from test's output file  */
	ifstream user_out(argv[3]);   /* This stream reads from user's output file  */
 
	/* Your code here */
	/* If user's output is correct, return 0, otherwise return 1       */
 
	...
 
}