File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
src/main/java/com/lzw/solutions/codeforces/p2190B Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments