-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathseavec.java
More file actions
executable file
·33 lines (31 loc) · 974 Bytes
/
seavec.java
File metadata and controls
executable file
·33 lines (31 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Neel_Kapadia
*/
import java.io.*;
public class seavec {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PrintWriter pw = new PrintWriter(System.out);
int i,j,t = Integer.parseInt(br.readLine());
String [] str;
int n,k,x[];
while(t-->0){
str = br.readLine().trim().split("\\s+");
n = Integer.parseInt(str[0]);
k = Integer.parseInt(str[1]);
for(i=0;i<n;i++)
{
str = br.readLine().trim().split("\\s+");
for(j=0;j<k;j++)
{
}
}
}
}
}