sadpumptato-cat wrote: ↑February 21st, 2023, 2:15 pm Memorize the Baconian alphabet and grind. I don't know anything about Xenos so I can't help you there, but this event is literally just practice and there isn't a way around that. No shortcuts
Codebusters B/C
-
- Member
- Posts: 26
- Joined: December 8th, 2022, 3:05 pm
- State: KS
- Pronouns: He/Him/His
- Has thanked: 4 times
- Been thanked: 1 time
- Contact:
Re: Codebusters B/C
"Kakarot! I've placed my pride.. My promise.. Everything in your hands. Your defeat is unacceptable. Step over the state of the Gods and Defeat Jiren, Kakarot!" -Vegeta
- hmmm
- Member
- Posts: 141
- Joined: January 10th, 2019, 2:33 pm
- Division: C
- State: NJ
- Has thanked: 13 times
- Been thanked: 4 times
Re: Codebusters B/C
I believe so. More than 2 errors means you get penalty points, and you don't get the bonus.
Last edited by hmmm on February 23rd, 2023, 7:42 am, edited 1 time in total.
- gz839918
- Admin Emeritus
- Posts: 228
- Joined: April 27th, 2019, 6:40 pm
- Division: Grad
- State: NC
- Pronouns: He/Him/His
- Has thanked: 448 times
- Been thanked: 368 times
- Contact:
Re: Codebusters returning?
(Sorry for the delay! I'm bumping your post because it got buried in the post approval process. Welcome to Scioly.org!)PBJSandwich wrote: ↑February 16th, 2023, 7:57 pm Hello friends, first post here. I am wondering whether Codebusters will be returning for 2024 and 2025. The event has repeated for 5 times in a row which is quite an amount for a repeating event. Will next year mark its death?
https://scioly.org/wiki/index.php/Past_Event_Rotations
John Toebes created Codebusters, and as long as he's still around, it's possible it may continue. I'm not too sure of anything though, since I'm not tapped into nationals nor do I know Toebes too well.
I ❤ sounds of music! About me • Rate my tests
Carmel High School ’19
The University of North Carolina at Chapel Hill ’23
“People overestimate what they can do in a day, and underestimate what they can do in a lifetime.” –Unknown
Carmel High School ’19
The University of North Carolina at Chapel Hill ’23
“People overestimate what they can do in a day, and underestimate what they can do in a lifetime.” –Unknown
-
- Member
- Posts: 26
- Joined: December 8th, 2022, 3:05 pm
- State: KS
- Pronouns: He/Him/His
- Has thanked: 4 times
- Been thanked: 1 time
- Contact:
Re: Codebusters B/C
What if on the timed question what if you do the thing the paper asks you to do at last second? does it still count??????/
"Kakarot! I've placed my pride.. My promise.. Everything in your hands. Your defeat is unacceptable. Step over the state of the Gods and Defeat Jiren, Kakarot!" -Vegeta
-
- Member
- Posts: 15
- Joined: September 10th, 2022, 9:37 am
- Division: B
- Pronouns: She/Her/Hers
- Has thanked: 5 times
- Been thanked: 3 times
Re: Codebusters B/C
You would still get full points for the question, but you wouldn't get the extra bonus points for solving it in the first 10 mins.
- These users thanked the author bangtanarmy7 for the post:
- Sorrow2 (March 1st, 2023, 9:16 am)
"Sometimes clouds have two sides, a dark and light, and a silver lining in between. It's like a silver sandwich. So, when life seems hard, take a bite out of the silver sandwich."- Sokka
- Umaroth
- Exalted Member
- Posts: 395
- Joined: February 10th, 2018, 8:51 pm
- Division: C
- State: CA
- Pronouns: He/Him/His
- Has thanked: 167 times
- Been thanked: 325 times
Re: Codebusters returning?
Hello, now that the tentative event slate for next year is out, it appears that Codebusters is sticking around. I'd expect ciphers swapping in and out, but the core of the event staying the same (aristos, timed question, etc.)PBJSandwich wrote: ↑February 16th, 2023, 7:57 pm Hello friends, first post here. I am wondering whether Codebusters will be returning for 2024 and 2025. The event has repeated for 5 times in a row which is quite an amount for a repeating event. Will next year mark its death?
https://scioly.org/wiki/index.php/Past_Event_Rotations
Cal 2026
Troy SciOly 2021 Co-Captain
Proud Padre of the Evola SciOly Program 2018-now
Dank Memes Area Homeschool Juggernaut 2018-now
Sierra Vista SciOly Co-Head Coach 2020-now
Umaroth's Userpage
Troy SciOly 2021 Co-Captain
Proud Padre of the Evola SciOly Program 2018-now
Dank Memes Area Homeschool Juggernaut 2018-now
Sierra Vista SciOly Co-Head Coach 2020-now
Umaroth's Userpage
-
- Member
- Posts: 589
- Joined: April 26th, 2018, 6:40 pm
- Has thanked: 4 times
- Been thanked: 102 times
Re: Codebusters B/C
Here's a worked example for you. You are given the cyphertext
"ABOBRFLYBMLHGQBPSLYLSSRYBTODGWLYLQDFRF", and told that the first two letters of the plaintext are H and E.
So you know that under the affine encryption, E(4) -> B(1) and H(7) ->A (0).
So (4a + b) mod 26 = 1
and (7a + b) mod 26 = 0
Subtracting these, you get 3a mod 26 = -1 = 25.
So we're hunting for a value of a for which 3a mod 26 = 25.
3a = 25 is no good, 'cause a needs to be an integer.
3a = 51 gives a = 17, which is a viable solution.
3a = 77 doesn't have an integer solution, and then there aren't any other valid solutions, because you know a<26.
So with a=17, the first equation becomes
(68 + b) mod 26 = 1
or equivalently
(16 + b) mod 26 = 1
And so b = 11.
Now you have determined a and b, you can compute the mappings.
A(0) -> (b mod 26) = 11 = L
B(1) -> (a + b) mod 26 = 2 = C
C(2) -> (2a + b) mod 26 = 19 = T
D(3) -> (3a + b) mod 26 = 10 = K.
And so on.
You might prefer to compute the mappings for the high frequency letters (etaoin shrdlu...) rather than doing them in alphabetical order. Finishing this off is left as an exercise for the reader
-
- Member
- Posts: 589
- Joined: April 26th, 2018, 6:40 pm
- Has thanked: 4 times
- Been thanked: 102 times
Re: Codebusters B/C
There is no restriction in the rules. So in theory, the answer is "any mathematical operation that B team members can be assumed to be familiar with". Which would probably be addition, subtraction, multiplication, division, square roots and small integer powers.
The rules don't actually specify that the cryptarithm has to be in base 10, but it would be a particularly evil ES who would compose a problem in any other base.
Who is online
Users browsing this forum: No registered users and 0 guests