@@ -35,14 +35,14 @@ ACM International Collegiate Programming Contest (abbreviated
35
35
36
36
package UVa ;
37
37
38
- import java .io .BufferedReader ;
39
- import java .io .PrintWriter ;
40
38
import java .text .DecimalFormat ;
39
+ import java .util .HashMap ;
40
+ import java .util .Map ;
41
41
import java .util .Scanner ;
42
42
43
43
public class Newspaper {
44
44
45
- static void solve () throws Exception {
45
+ public static void main ( String [] args ) {
46
46
Scanner input = new Scanner (System .in );
47
47
int numberOfTestCases = input .nextInt ();
48
48
while (numberOfTestCases != 0 ) {
@@ -71,34 +71,6 @@ static void solve() throws Exception {
71
71
System .out .println (sumFormatted + "$" );
72
72
numberOfTestCases --;
73
73
}
74
- input .close ();
75
- }
76
-
77
- static int nextInt () throws IOException {
78
- return parseInt (next ());
79
- }
80
-
81
- static String next () throws IOException {
82
- while (tok == null || !tok .hasMoreTokens ()) {
83
- tok = new StringTokenizer (in .readLine ());
84
- }
85
- return tok .nextToken ();
86
- }
87
-
88
- public static void main (String [] args ) {
89
- try {
90
- in = new BufferedReader (new InputStreamReader (System .in ));
91
- out = new PrintWriter (new OutputStreamWriter (System .out ));
92
- solve ();
93
- in .close ();
94
- out .close ();
95
- } catch (Throwable e ) {
96
- e .printStackTrace ();
97
- exit (0 );
98
- }
99
74
}
100
75
101
- static BufferedReader in ;
102
- static PrintWriter out ;
103
- static StringTokenizer tok ;
104
76
}
0 commit comments