View Code of Problem 124

import java.util.*;
public class Main {
	 public static void main(String[] args) {
		 Scanner in = new Scanner(System.in);
		 int t = in.nextInt();
		 for(int i =0;i<t;i++) {
			 int n=in.nextInt();
			 int m=in.nextInt();
			 int win = in.nextInt();
			 int equal= in.nextInt();
			 int lose = in.nextInt();
			 //int rank = n*(n+1);
			 int[] allmatch =new int[n];
 
		 }
	 }
}

Double click to view unformatted code.


Back to problem 124