Блог пользователя born2rule

Автор born2rule, история, 6 лет назад, По-английски

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.

  • Проголосовать: нравится
  • +36
  • Проголосовать: не нравится

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
6 лет назад, # |
  Проголосовать: нравится +64 Проголосовать: не нравится

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 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

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

»
6 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

Contest is going to start in 5 min.

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Grader has stopped working?

»
6 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

502 ,500,504 errors

»
6 лет назад, # |
  Проголосовать: нравится +5 Проголосовать: не нравится

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

  • »
    »
    6 лет назад, # ^ |
      Проголосовать: нравится +11 Проголосовать: не нравится

    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 лет назад, # ^ |
        Проголосовать: нравится +10 Проголосовать: не нравится

      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