Skip to content

Instantly share code, notes, and snippets.

@yehee
Last active April 23, 2022 23:21
Show Gist options
  • Save yehee/431c0f35910e0f27ea84461c4e999e49 to your computer and use it in GitHub Desktop.
Save yehee/431c0f35910e0f27ea84461c4e999e49 to your computer and use it in GitHub Desktop.
A starter template for Google Code Jam and Kickstart
import java.io.*;
import java.util.*;
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int T = in.nextInt();
for (int t = 1; t <= T; t++) {
int n = 0;
System.out.printf("Case #%d: %d\n", t, n);
}
in.close();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment