The ACM-ICPC International Collegiate Programming Contest
ACM Regional Programming Contest
Kattis Practice Site
- You should practice for the contest at an open contest site: https://open.kattis.com/
- Go to the site
- 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;
int main() { 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)
- The site is https://naq16.kattis.com/
- You will recieve an account with instructions prior to the contest.
Proposed Participants
LIST:
yuanj@kenyon.edu;hoared@kenyon.edu;barbehenna@kenyon.edu;olivierid@kenyon.edu;bakboukg@kenyon.edu;xuy@kenyon.edu;hulsea@kenyon.edu;carneym@kenyon.edu;braunk@kenyon.edu;feenstrac@kenyon.edu;stapyltonm@kenyon.edu;skonjp@kenyon.edu;aydinn@kenyon.edu
yuanj@kenyon.edu;hoared@kenyon.edu;barbehenna@kenyon.edu;olivierid@kenyon.edu;bakboukg@kenyon.edu;xuy@kenyon.edu;aydinn@kenyon.edu;skonjp@kenyon.edu
Information
--
Jim Skon - 2016-08-30
Comments