File tree Expand file tree Collapse file tree 2 files changed +51
-0
lines changed Expand file tree Collapse file tree 2 files changed +51
-0
lines changed Original file line number Diff line number Diff line change
1
+ 8
2
+ 2
3
+ 1 2
4
+ 4
5
+ 2 1 0 0
6
+ 10
7
+ 5 9 3 7 1 5 1 5 4 3
8
+ 10
9
+ 1 1 1 1 1 1 1 1 1 1
10
+ 10
11
+ 3 2 1 0 3 2 1 0 3 2
12
+ 5
13
+ 5 2 0 5 5
14
+ 1
15
+ 1000000000
16
+ 7
17
+ 4 0 1 0 2 7 7
Original file line number Diff line number Diff line change
1
+ import java .io .BufferedReader ;
2
+ import java .io .IOException ;
3
+ import java .io .InputStreamReader ;
4
+ import java .io .PrintWriter ;
5
+
6
+ public class Main {
7
+
8
+ BufferedReader in ;
9
+ PrintWriter out ;
10
+
11
+ Main () {
12
+ in = new BufferedReader (new InputStreamReader (System .in ));
13
+ out = new PrintWriter (System .out );
14
+ }
15
+
16
+ public static void main (String [] args ) throws IOException {
17
+ Main m = new Main ();
18
+ m .solve ();
19
+ m .close ();
20
+ }
21
+
22
+ void close () {
23
+ out .flush ();
24
+ out .close ();
25
+ }
26
+
27
+ void solve () throws IOException {
28
+ int t = Integer .parseInt (in .readLine ());
29
+ while (t > 0 ) {
30
+ t --;
31
+ int n = Integer .parseInt (in .readLine ());
32
+ }
33
+ }
34
+ }
You can’t perform that action at this time.
0 commit comments