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 = 1;
			 int a = n;
			 rank=rank*a*(a-1);
			 int[] allmatch =new int[rank];
 
		 }
	 }
}

Double click to view unformatted code.


Back to problem 124