born2rule's blog

By born2rule, history, 6 years ago, In English

After successfully organizing CodeCraft, Felicity 2018 presents Fool's Programming. It's an unusual Coding contest for puzzle lovers hosted on CODECHEF. It is based on concept of April Fool's contest on Codeforces. The problems can not only have unusual solutions, but can also have bizarre problem statements that can make one scratch their brains. Deciphering the questions can at times be more challenging than solving them.

To enjoy competing in this round, along with basic programming skills, you'll need eagle eye to spot the clues and hints hidden in the questions posed to you.

The contest will be hosted on CODECHEF on the Tuesday, 23rd of January, 20:05 PM IST.

  • Vote: I like it
  • +36
  • Vote: I do not like it

| Write comment?
»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by born2rule (previous revision, new revision, compare).

»
6 years ago, # |
  Vote: I like it +64 Vote: I do not like it

Just to clarify, I'm the author of April Fools contest series listed in "Similar contests" list and I'm not affiliated with this contest in any way.

Stay tuned for the 6th April Fools contest on Codeforces on April 1st :-)

  • »
    »
    6 years ago, # ^ |
      Vote: I like it -17 Vote: I do not like it

    This is not a April Fool Contest :'). You did wrong.

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Auto comment: topic has been updated by born2rule (previous revision, new revision, compare).

»
6 years ago, # |
  Vote: I like it +5 Vote: I do not like it

Contest is going to start in 5 min.

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Grader has stopped working?

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

502 ,500,504 errors

  • »
    »
    6 years ago, # ^ |
    Rev. 2   Vote: I like it +1 Vote: I do not like it

    They will be fixed shortly. Please stay tuned. Edit: Please, try now. It's up.

»
6 years ago, # |
  Vote: I like it +5 Vote: I do not like it

how to solve "Ask Key World" and "Capitals Of the Past"?

  • »
    »
    6 years ago, # ^ |
      Vote: I like it +11 Vote: I do not like it

    Ask Key World: You need to make a string using the integer array. The characters are encoded in the array given. They are equivalent to ASCII characters of numbers formed. Now, the ith character is dependent on number a[i] — a[i — 1] (assume a[0] = 0). Now, just check if the string exists in the set.

    Capitals of the Past: Just sum the numbers and print the next prime greater than sum. (Hint was reading the last problem (toughest) and seeing "PRIME" written in that [atleast I think so]).

    • »
      »
      »
      6 years ago, # ^ |
        Vote: I like it +10 Vote: I do not like it

      You are right about the Ask Key World.

      But for Capitals of the Past, complete problem statement was spread across in previous questions. "LEAST PRIME LARGER THAN SUM OF INPUTS". It turned out easier than expected due to sample test cases :P