After all the ordeal, Christine decided to save your lives by kissing the Phantom. That was very nice of her. However, the Phantom considers letting Christine leave with Raoul, if and only if you can convince him that your party is worthy. He challenges you to write a program that shows all the primes under a specific number, while marking the twin primes. Easy as it may sound, the Phantom is also an expert programmer: you have to prove yourself to be at least as good as him. In Python, he expects you to write it in one statement. This means, no newlines or semicolons are allowed. To prevent the cheap way of achieving this, you are also not allowed to use eval
or exec
. To make sure he did not save that scarf for nothing, Raoul bribes you with 40 staggering points.
Input Specification
The input will be one line, containing the number , such that .
Output Specification
All the primes smaller than , separated by whitespace, with a *
after every number forming a twin prime with another. A twin prime is defined as a prime number such that or are prime.
Scoring
If your solution is correct and contains only one statement without eval
or exec
, you get 10 points. For full points, your solution must be at most 114 characters long.
More accurately, let be the length of your solution. If your solution is wrong, you receive 0. If , you get points. If , your score is .
Sample Input
50
Sample Output
2
3*
5*
7*
11*
13*
17*
19*
23
29*
31*
37
41*
43*
47
Comments
BRO WHY DO I HAVE 100/100 BUT NO FULL AC
Edit: HALP ME I HAVE ONE CHAR TOO MANY AAAAAAAAAAAA
Edit 2: I DID IT LESGOOOOOOOOOOOOOOOOOOOOOOOOOOOO
Is the full solution possible in python 3? All of the best submissions are in python 2.
PyPy3 has apparently upgraded to 3.8, allowing for solutions that abuse the walrus operator. Consequently, 108 bytes seems to be the new record (beating the best Python 2 solutions by over 4 bytes).
Due to my discovery of a 114-byte solution in Python 2, it now appears possible in Python 3.
This comment is hidden due to too much negative feedback. Show it anyway.
There is a 116 character solution in Python 3 with the correct time complexity, but it TLEs.
Edit: There is a 106-byte solution that passes in PyPy 3
No it's not possible in python 3, sorry. Python 2 has a lot of quirks in its syntax that make it easier to golf.
2022 Edit: Dingledooper's right, it is now possible in Python 3
Note: As an extension of eval/exec cheating, compile is also not allowed.
Looking from the sample input, are we assuming that 1 is a prime as well since 3 is considered a twin prime?
EDIT: Misread the "or", my bad
Help please. What's causing my code to MLE?
sys.getsizeof(set([*range(int(1e7))]))
, the maximum size of my sieve, returns 134217844 130MB on my computer. Why is my code using so much more than that?Pypy, despite fast is not very efficient with memory.
My code TLEs on PY3 but would otherwise still MLE.
e: help
Work on it for more than 2 hours 😃
blasphemy :o
Thanks for the fun problem, guys!
Never did I think I would see the day someone actually solves this problem.
Good job. Now try to make it even shorter!
Too late, I peeked at your code.