Skip to content

Commit 288583f

Browse files
committed
feat(codeforces): add solution for problem p2190B
1 parent 1570f94 commit 288583f

File tree

1 file changed

+36
-0
lines changed
  • src/main/java/com/lzw/solutions/codeforces/p2190B

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
package com.lzw.solutions.codeforces.p2190B;
2+
3+
import java.io.BufferedReader;
4+
import java.io.IOException;
5+
import java.io.InputStreamReader;
6+
import java.io.PrintWriter;
7+
8+
public class Main {
9+
10+
private BufferedReader in;
11+
private PrintWriter out;
12+
13+
public Main() {
14+
in = new BufferedReader(new InputStreamReader(System.in));
15+
out = new PrintWriter(System.out);
16+
}
17+
18+
public static void main(String[] args) throws IOException {
19+
Main m = new Main();
20+
m.solve();
21+
m.close();
22+
}
23+
24+
private void close() {
25+
out.flush();
26+
out.close();
27+
}
28+
29+
private void solve() throws IOException {
30+
int t = Integer.parseInt(in.readLine());
31+
while (t > 0) {
32+
t--;
33+
int n = Integer.parseInt(in.readLine());
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)