I was trying to submit two previously accepted problems, "Fibinary Numbers" (problem 763) and "Factorial Frequencies" (problem 324) without success.
This was the error message provided by the Online Judge:
00747121_24.java:4: Can't find default package `java.math'. Check the CLASSPATH environment variable and the access to the archives.
1 error
Is the java.math library disabled? Why did it work before?
If I remove the "import java.math.*;" line in my source code, it gives these errors:
00747112_24.java:23: Type `BigInteger' not found in the declaration of the local variable `um'.
BigInteger um = new BigInteger("1");
^
00747112_24.java:29: Type `BigInteger' not found in the declaration of the local variable `n'.
BigInteger n = new BigInteger(ln);
^
00747112_24.java:30: Type `BigInteger' not found in the declaration of the local variable `fat'.
BigInteger fat = um;
^
3 errors
Anyone could help?
Thanks in advance
