Skip to content

Instantly share code, notes, and snippets.

@rknightly
Last active October 11, 2018 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rknightly/7f111de4bfc3925115a9d6a39ac0c976 to your computer and use it in GitHub Desktop.
Save rknightly/7f111de4bfc3925115a9d6a39ac0c976 to your computer and use it in GitHub Desktop.
UIL Solution Template
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
import static java.lang.System.out; // allow use of out.println() without System
public class ProblemName {
// CHANGE FILE NAME FOR EACH PROBLEM!
private static final String inputFileName = "filename00.dat";
private static Scanner scan;
public static void main(String[] args) {
try {
// Set up scanner to get input from file
scan = new Scanner(new File(inputFileName));
// Read the number of test cases from first line
int numCases = scan.nextInt();
// Read any other input variables at top of input file here
// Move to next line for test cases
scan.nextLine();
// Loop through each test case
for(int caseNum=0; caseNum<numCases; caseNum++) {
handleTestCase();
}
scan.close();
} catch (FileNotFoundException exception) {
exception.printStackTrace();
}
}
public static void handleTestCase() {
// Write solution for a single test case below
String inputLine = scan.nextLine(); // replace with custom input reading
out.println(inputLine); // replace with custom input processing and output
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment