USACO Training Site:

Most of our training will be done on the USACO training pages

From time to time we might look at questions on HackerRank

The C^3 Programming Gauntlet

This is a series of questions we'll use to create teams for 4-man competitions. No post-AP CS knowledge neccessary

Competition page
USACO Submission Template

If you're submitting an answer for _question with the id _id in Java,


_question.java


/*
ID: _id
LANG: JAVA
TASK: _question
*/
import java.io.*;
import java.util.*;

public class _question {
	public static void main(String[] args) throws Exception {
		Scanner input = new Scanner(new File("_question.in"));
		PrintWriter pw = new PrintWriter(new File("_question.out"));
		/*
		your code here:
		Read input using input.next();
		Write output using pw.println();
		*/
		input.close();
		pw.close();
	}
}

You must end each output line with a '\n' for USACO