Create an account or log in with one of the socal apps
Select a problem, write the code, and submit the program source file and wait while it is Judged.
You will receive a ranking.
There are language specific instructions for the site here: Kattis Help. You will want to use C++, Java, or Python to be ready for the regional contest.
Please note that you will be submitting COMPLETE programs. All input and output is done using the standard streams (cin and cout in C++).
Below is a typical solution for a problem asking for a integer, and which must print out that many “Abracadabra”s.
<br />#include <iostream> using namespace std;
intmain() { int n; cin >> n; for (int i=1 ; i <= n ; i++) { cout << i << " Abracadabra" << endl;; } return 0; }<br />
Qualifiers
Qualifier Site (September 24, 11:30am – 5:30 pm)
This will be in Hayes 311
Bring any referance material, you may also use the Web for reference (not for solutions)