You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- \$\begingroup\$ You only need to test primes up to the square root of the input. Once you've tested the small primes and the square of the next prime to be tested is bigger than the input, you can skip to the end. \$\endgroup\$Level River St– Level River St2022-01-07 20:19:43 +00:00Commented Jan 7, 2022 at 20:19
- \$\begingroup\$ @LevelRiverSt I actually thought about that a while after I posted this. That's exactly why there is a bit leap in CPU time going from 200 million to 300 million (the tests happen at 9, 121, 16129, 260467321). On real CPU, adding the test every line gained a lot in the higher ranges but was slower in the lower ranges. I didn't test what works better on this VM, but I just guessed maybe the increased code size won't pay off because the given range is only up to 2 million. \$\endgroup\$xiver77– xiver772022-01-08 00:54:51 +00:00Commented Jan 8, 2022 at 0:54
- 1\$\begingroup\$ Sorry I didn't realise you already had some tests in there. I figured you wouldn't want to do the input size test every time. I would have thought the optimum would be somewhere in the range of one input size test per every 5 to 10 trial divisions. I doubt the test at 9 is doing anything for you. I would say get rid of that, and add several more at higher values. \$\endgroup\$Level River St– Level River St2022-01-08 01:13:15 +00:00Commented Jan 8, 2022 at 1:13
Add a comment |
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
- MathJax equations
\$\sin^2 \theta\$
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. code-golf), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you