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.
Project Euler #234: Semidivisible numbers
Project Euler #234: Semidivisible numbers
Sort by
recency
|
23 Discussions
|
Please Login in order to post a comment
I have implemented an efficient solution for the problem that can calculate the answer to the original euler project question (sum under 999966663333 answer not modular) however I'm struggling to compute the answer in the 10^18 range modulo 1004535809. The sieving I'm using is very efficient and the calculations are fast too, however sieving up to 10^9 will be pretty intensive even for the best sieves. Does anyone know about any resource on modular arithmetic that I could read to try and optimize the program by reducing the range using the module? Thanks
Are there any edge cases here?
this is my code in C#, I got just 8.22 can someone help.
using System; using System.Collections.Generic; using System.IO; class Solution { static void Main(String[] args) { /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution */ // int l = int.Parse(Console.ReadLine()); // int r = int.Parse(Console.ReadLine());
}
how to convert string array value to long in c# as the given contraints say the limit of R will be 10^18.