YY_11's blog

By YY_11, history, 6 months ago, In English

TLE ACCEPTED do anybody know why do im facing this problem?

  • Vote: I like it
  • 0
  • Vote: I do not like it

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

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

»
6 months ago, # |
Rev. 2   Vote: I like it +8 Vote: I do not like it

Your program uses many 64 bit ints which makes running it with a 32 bit CPU slower. 64 bit ints take 2 operations instead of 1 to change on a 32 bit CPU.

  • »
    »
    6 months ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Thanks for the information. Sorry, By mistake I clicked on downvote