View Code import java.io.*;import java.util.*;public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); int t, n, i; int dp[] = new int[100000]; t = cin.nextInt(); int cases=0; while (t > 0) { t--; ... Read More
posted @ 2011-12-05 14:16 Because Of You Views(445) Comments(0) Diggs(0) Edit