Skip to content

Instantly share code, notes, and snippets.

@mojaie
Created December 5, 2011 20:06
Show Gist options
  • Save mojaie/1435135 to your computer and use it in GitHub Desktop.
Save mojaie/1435135 to your computer and use it in GitHub Desktop.
A0024
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner scn = new Scanner(System.in);
while (scn.hasNext()) {
double v = scn.nextDouble();
System.out.println((int)(v * v / 98 + 1) + 1);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment