We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ea9c85 commit 31789b8Copy full SHA for 31789b8
src/main/java/com/lzw/solutions/codeforces/p2190A/Main.java
@@ -19,7 +19,13 @@ public class Main {
19
}
20
21
void solve() throws IOException {
22
-
+ int t = Integer.parseInt(in.readLine());
23
+ while (t-->0){
24
+ int n = Integer.parseInt(in.readLine());
25
+ String s = in.readLine();
26
+ assert (s.length() == n);
27
+ System.out.println(s);
28
+ }
29
30
31
void close() throws IOException {
src/main/resources/codeforces/2190A/1.in src/main/resources/codeforces/p2190A/1.insrc/main/resources/codeforces/2190A/1.in renamed to src/main/resources/codeforces/p2190A/1.in
0 commit comments