E D R , A S I H C RSS

Full text search for "0000.00.00"

0000.00.00


Search BackLinks only
Display context of search results
Case-sensitive searching
  • Erlang/기본문법 . . . . 7 matches
         >>> 10000000000000 * 10000000000000000000.
         100000000000000000000000000000000
  • C/Assembly/Main . . . . 6 matches
          shrl $4, %eax // eax = 0xF0000001 11110000000000000000000000000001(bin)
          sall $4, %eax // eax = 0x1F 00000000000000000000000000011111(bin)
  • EightQueenProblem/강석천 . . . . 5 matches
          self.assertEquals (self.bd.PrintBoard (), '''00000000\n01000000\n00100000\n00000000\n00000000\n00000000\n00000000\n00000001\n''')
  • EightQueenProblemDiscussion . . . . 5 matches
          self.assertEquals (self.bd.PrintBoard (), '''00000000\n01000000\n00100000\n00000000\n00000000\n00000000\n00000000\n00000001\n''')
  • Self-describingSequence/1002 . . . . 5 matches
         for i in [100,9999,123456,1000000000]: print selfDescrib(i)
         문제는, 1000000000 의 경우에 대해서 답이 나오는 시간이 엄청나게 걸린다는 점이다. 이에 대해서 어떻게 할 것인가 고민,
         풀고 나니, 그래도 역시 1000000000 에 대해서는 굉장히 느림. 느릴 부분을 생각하던 중 findGroupIdx 부분이
          for e in [100,9999,123456,1000000000]:
         수행 시간 : 1000000000 기준 0.95초(with psyco) 2.18초(without psyco)
  • SmallTalk/강좌FromHitel/강의2 . . . . 5 matches
          32406235170085879617892222278962370389737472000000000000000000000000000
          0000000000000000000000
  • 영호의해킹공부페이지 . . . . 5 matches
         EDX=00400031 ES=0167 EDI=00000000 GS=0000
         00000000 81596754 00530000 c0000005 0063ff68 0063fe0c 0063fc3c 0063ff68
         00403d18 00407190 00000000 0063ff78 bff8b537 00000000 81596754 00530000
         EDX=00006161 ES=0167 EDI=00000000 GS=0000
  • 최소정수의합/허아영 . . . . 4 matches
          while(sum <=18000000000000000000)
         만약에 3000까지가 아닌 더 큰 수를 입력하고 프로그램을 돌려보시겠어요? 위의 코드에서 int 를 double 형으로 바꾸고 3000 대신 18000000000000000000 을 넣은 코드입니다. 한번 실행해 보세요. 더 나은 방법이 생각나실수도 있을것 같아요. 문제를 풀고 나서 어떤 점을 느끼셨나요? - 아무개
  • Marbles/이동현 . . . . 3 matches
         2000000000
         1900000000 1900000000
  • Marbles/조현태 . . . . 3 matches
         2000000000
         1900000000 1900000000
  • bitblt로 투명배경 구현하기 . . . . 3 matches
          검은색은 000000000000000000000000이니까 (bit로 ㅎ 갯수가 맞나?)어떤색을 or연산해도 그색 그대로 나온답니다.^^)
  • Algorithm/DynamicProgramming . . . . 2 matches
         [http://mat.gsia.cmu.edu/classes/dynamic/node5.html#SECTION00050000000000000000]
  • EffectiveC++ . . . . 2 matches
          int *pVigdataArray = new int [100000000]; // 100000000개의 정수공간을 할당할 수 없다면 noMoreMemory가 호출.
  • PowerOfCryptography/조현태 . . . . 2 matches
         const unsigned __int64 MAX_LONG=1000000000000000000;
  • Self-describingSequence/황재선 . . . . 2 matches
          assertEquals(438744, ds.getSequence(1000000000));
          assertEquals(673365, ds.getSequence(2000000000));
  • 강희경/메모장 . . . . 2 matches
         y = 4 * (1 - x)라는 수식에서 x의 값이 0.3이었을 때와 0.3000000001이었을 때, 이 함수를 100번 반복했을 때 결과의 차이.
         if 0.3000000001 then 0.076831721
  • 새싹교실/2012/열반/120319 . . . . 2 matches
         printf("%d", 10000000000);
         printf("%lld", 10000000000);
  • 장용운/곱셈왕 . . . . 2 matches
         38 = 100110(2) = 00000000 00100110
         38<<2 = 00000000 10011000 = 152
  • 5인용C++스터디/클래스상속 . . . . 1 match
          park.set_salary( 100000000);
  • AdventuresInMoving:PartIV/김상섭 . . . . 1 match
         #define MAX_NUM 1000000000
  • AdventuresInMoving:PartIV/문보창 . . . . 1 match
         #define MAX_NUM 1000000000
  • BookTemplate . . . . 1 match
         || [[ISBN(0000000000,K)]] ||
  • Chopsticks/문보창 . . . . 1 match
         #define MAX_NUM 1000000000
  • Gnutella-MoreFree . . . . 1 match
         || ping || 네트워크상의 호스트를 찾을 때 쓰인다. Payload가 없기 때문에 header의 Payload_Length = 0x00000000 로 설정된다. ||
  • OurMajorLangIsCAndCPlusPlus/Variable . . . . 1 match
          for(int i = 0 ; i < 1000000000 ; i++)
  • Self-describingSequence . . . . 1 match
         1000000000
  • SmithNumbers/남상협 . . . . 1 match
          for(int i = number; i<1000000000; i++)
  • SmithNumbers/이도현 . . . . 1 match
          for (j = input_case + 1; j < 1000000000; j++)
  • ThePriestMathematician/김상섭 . . . . 1 match
          min = 4000000000;
  • UglyNumbers . . . . 1 match
         (혹시나 더 많은 숫자를 실험해 보고 싶은 사람을 위해: 1550번째는 {{{~cpp 1093500000}}}, 십만번째는 {{{~cpp 290142196707511001929482240000000000000}}}.)
  • WOWAddOn/2011년프로젝트/초성퀴즈 . . . . 1 match
         00000000 ~ 01111111 : 1 byte (0 ~ 127)
  • [Lovely]boy^_^/USACO/PrimePalinDromes . . . . 1 match
          for(int i = 1 ; i <= 100000000 ; i *= 10)
  • 알고리즘5주숙제/하기웅 . . . . 1 match
         #define testcase 100000000
  • 책분류Template . . . . 1 match
         || [[ISBN(0000000000,K)]] ||
Found 34 matching pages out of 7555 total pages (5000 pages are searched)

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.0303 sec