Google's Puzzle...

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • insomniakxz
    FFR Player
    • Aug 2003
    • 302

    #1

    Google's Puzzle...

    Take from slashdot...

    "Commuters in Cambridge, Mass., are scratching their heads over signs challenging passers-by to solve a complicated math problem. The mysterious banners are actually a job-recruiting pitch from Google."

    Mysterious banners at a Cambridge, Mass., subway stop have commuters scratching their heads. The signs, challenging passers-by to solve a complicated math problem, are actually a cryptic a pitch by Google, which is looking to hire more brainy engineers. Andrea Shea reports.


    and
    An anonymous reader writes "Commuters in Cambridge, Mass., are scratching their heads over signs challenging passers-by to solve a complicated math problem. The mysterious banners are actually a job-recruiting pitch from Google."...


    So basically, it's a huge sign that says "{first 10-digit prime found in consecutive digits of e}.com" which is the address of a webpage with another puzzle... and the people who solve it might get a chance to work for Google as a "brainy engineer." So...anyone up for it?

    Sorry if it's in the wrong forum...I was deciding between this and chit chat.
  • Xaimus
    FFR Player
    • May 2004
    • 136

    #2
    I solved this a while back.

    The URL is:
    7427466391.com

    The digits of each of the numbers shown on that site add up to 49. I quickly wrote the following ass-program and got the answer:
    Code:
    #include <iostream>
    #include <string>
    #include <stdlib.h>
    #include <limits.h>
    
    using namespace std;
    
    const string e = "27182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274274663919320030599218174135966290435729003342952605956307381";
    
    int main&#40;int argc, char **argv&#41; &#123;
     for &#40;long start = 0; start < e.length&#40;&#41; - 9; start++&#41; &#123;
      int sum = 0;
      for &#40;long i = start; i < start + 10; i++&#41; &#123;
       sum += strtoll&#40;e.substr&#40;i, 1&#41;.c_str&#40;&#41;, &#40;char **&#41;NULL, 10&#41;;
      &#125;
      if &#40;sum == 49&#41; &#123;
       cout << e.substr&#40;start, 10&#41; << "\n";
      &#125;
     &#125;
     return 0;
    &#125;
    The answer is 5966290435.
    hooray bsd-tan

    Comment

    • zildjian133
      FFR Player
      • May 2003
      • 1138

      #3
      I solved it to they gave me a job and i quit in 3 days and got a 120 dollar employment check. I tried to cash it but couldn't because I wasn't 18. So I threw it away.

      Comment

      • banditcom
        FFR Player
        • Mar 2003
        • 6243

        #4
        I'm sure you did zildjian.

        I also created this whole idea for Google.

        Comment

        • dinnerroll
          FFR Player
          • Jun 2004
          • 283

          #5
          I started the internet so ha

          Comment

          • Privateer
            FFR Player
            • Sep 2003
            • 2962

            #6
            I'm God. No, I really am.

            Comment

            • lightdarkness
              Summer!!
              • Jul 2003
              • 11308

              #7
              Ok, enough guys.

              This has been solved, and posted on every message board, and everyone has read it.

              I belive google has stoped taking resumes from the site.

              If you want this thread to remain open, please keep it semi-related.

              Comment

              • Uzumaki_NarutoTheDemonFox
                FFR Player
                • Nov 2004
                • 2

                #8
                Yeah, well im vishnu, ill bitchslap you 4 times at once

                Comment

                • lightdarkness
                  Summer!!
                  • Jul 2003
                  • 11308

                  #9
                  Please don't bump old topics.

                  Comment

                  Working...