Cicada 3304


The answer is 56117369.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Markus Michelmann
Jun 10, 2018

The blue und green parts of this image seem to be scrambled. The red text gives some cryptic hints on what to do. Especially "A new view changes everything." and "There are several factors of success" indicate that the image has to be transformed to another aspect ratio so that the blue and green text become visible. The number of pixels in the original image is p = 330 330 = 2 2 3 2 5 2 1 1 2 p = 330 \cdot 330 = 2 ^ 2 \cdot 3 ^ 2 \cdot 5 ^ 2 \cdot 11 ^ 2 . With 8 prime factors, there are 2 8 2^8 ways to represent the number p = a b p = a b as the product of two numbers a a and b b . We can reduce the number of possible aspect ratios if we assume that width a a and height b b should not fall below a certain value, because otherwise letters and numbers cannot be represented (in my case this minimum value is 16 pixels). Nevertheless, you have to try a variety of aspect ratios and create a series of new images until you come across something meaningful. The "factors of success" are 99 x 1100 and 900 x 121, which produce the following images.

The latter is the Morse code representation of the number 7369, so the total code number is 56117369 .

The following Python program generates this series of reshaped images (59 images in total). It uses the numpy function reshape , which transforms an array to another representation.

1
2
3
4
5
6
7
8
import numpy as np
from PIL import Image

pic = Image.open("Cicada3304.png")
height, width, cl = pic.shape
for w in range(16, width*height//16):
    if width*height % w == 0:
        Image.fromarray(pic.reshape(width*height//w, w, cl)).save("{}x{}.png".format(w, width*height//w))

Too much to take in. Where did u get this problem?

Annie Li - 2 years, 12 months ago

Log in to reply

This is my own work. Maybe I overdid a bit when I chose the dimensions of the image so that the numbers have as many divisors as possible. The cryptic hints are not very helpful either.

Markus Michelmann - 2 years, 12 months ago

https://www.youtube.com/watch?v=I2O7blSSzpI This is inspired by the Cicada 3301 organisation.

Ikoz Manzukovski - 2 years, 11 months ago

Log in to reply

Yas i know about the cicada 3301. The book of codes are impossible for me to crack.

Annie Li - 2 years, 11 months ago

Ohh nice! I pursued the "hear" part of the clue UPDATE: To make myself feel better I've posted a problem on what I thought would be the answer to this problem

Julian Poon - 2 years, 12 months ago

When it said factors of success I thought it was the factors of the base 26 version of "SUCCESS" of which there's 4 of.

e r - 2 years, 12 months ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...