File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ 3
2
+ 2 5
3
+ 0
4
+ 0 1 0 0 0
5
+ 0 0 0 1 0
6
+ 4 6
7
+ 1
8
+ 0 1 1 0 0 0
9
+ 0 0 1 0 1 1
10
+ 0 1 1 1 1 0
11
+ 0 1 1 1 0 0
12
+ 2 2
13
+ 0
14
+ 0 1
15
+ 1 0
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
+ private final BufferedReader in ;
9
+ private final PrintWriter out ;
10
+
11
+ public Main () {
12
+ in = new BufferedReader (new InputStreamReader (System .in ));
13
+ out = new PrintWriter (System .out );
14
+ }
15
+
16
+ private void close () throws IOException {
17
+ in .close ();
18
+ out .close ();
19
+ }
20
+
21
+ public static void main (String [] args ) throws IOException {
22
+ Main m = new Main ();
23
+ m .solve ();
24
+ }
25
+
26
+ private void solve () {
27
+
28
+ }
29
+ }
You can’t perform that action at this time.
0 commit comments