import java.util.HashMap; import java.util.Map; import java.util.Scanner; public class F { Scanner in = new Scanner(System.in); private double getSlope(int x1, int y1, int x2, int y2){ return 1.0*(y2-y1)/(x2-x1); } private double[][] makeArray(int[] x, int[] y, int n ){ double[][] M = new double[n][n]; for (int i=0; i counts = new HashMap(); // for (int j=0; j entry: counts.entrySet()){ // if ((1.0*entry.getValue()+1)/n * 100 >=p ){ // result = "possible"; // done=true; // break; // } // } // if(done){break;} // } System.out.println(result); } public static void main(String[] args){ F f = new F(); f.go(); } }