We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- All Contests
- ProjectEuler+
- Project Euler #172: Investigating numbers with few repeated digits
- Discussions
Project Euler #172: Investigating numbers with few repeated digits
Project Euler #172: Investigating numbers with few repeated digits
Sort by
recency
|
31 Discussions
|
Please Login in order to post a comment
my code work perfectly if k below 6... if the k is 7 and above, my C# code will not showing any result...i think is the max size of the data type problem...
Can I know the mistake?
My code is not submitting. Its show Terminated due to timeout..... only Testcase0 is submitted .
when will contest end :p
int fact(int n){ if(n<=1) return 1; return fact(n-1)*n; } public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); int t = in.nextInt(); ; Solution s = new Solution(); for(int i=0;i