chokudai's blog

By chokudai, history, 3 years ago, In English

We will hold TOYOTA MOTOR CORPORATION Programming Contest 2023#1 (AtCoder Beginner Contest 298).

The point values will be 100-200-300-400-500-500-600-600. We are looking forward to your participation!

Updated: Due to DDoS, the contest has been Unrated. We apologize for the inconvenience. We will have a meeting on Monday to discuss countermeasures against DDoS. We hope to have the countermeasures completed by next week's contest.

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

| Write comment?
»
3 years ago, hide # |
 
Vote: I like it +11 Vote: I do not like it

why 502

»
3 years ago, hide # |
 
Vote: I like it +3 Vote: I do not like it

504 Gateway time-out

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

502?

»
3 years ago, hide # |
 
Vote: I like it +1 Vote: I do not like it

will round be unrated now?? Losing a lot of time

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

Would you please put the task for printing pdf here, and extend the time?

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

[user:chokudai]Please extend some time!

»
3 years ago, hide # |
 
Vote: I like it +4 Vote: I do not like it

DDos, not again!

»
3 years ago, hide # |
 
Vote: I like it +24 Vote: I do not like it

Please, don't UNR.

You may delay the end of the contest.

»
3 years ago, hide # |
 
Vote: I like it +41 Vote: I do not like it

Just when I perform good. I mean how pathetic you have to be to DDOS a competitive programming site

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

Why can't users CHOOSE to be UNRATED or to be RATED? It's super unfair!

»
3 years ago, hide # |
 
Vote: I like it -20 Vote: I do not like it

You can choose to let those who play genshin rated, like me!

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

Me having a good contest,

Spoiler
»
3 years ago, hide # |
 
Vote: I like it +33 Vote: I do not like it

can anyone tell why so many DDOS attacks in recent contests?? Atcoder is held only once a week and now contest is ruined

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

Why do the attackers do this?

I mean what is their purpose?

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

This code fails for one test case- Code ,can someone help to figure it out?

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

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

»
3 years ago, hide # |
Rev. 3  
Vote: I like it 0 Vote: I do not like it
code

why this gives runtime error ...Problem D

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    string can be bigger stoll() can't handle more than long long limit.

    • »
      »
      »
      3 years ago, hide # ^ |
      Rev. 2  
      Vote: I like it +8 Vote: I do not like it

      got it.. thanks

    • »
      »
      »
      3 years ago, hide # ^ |
       
      Vote: I like it 0 Vote: I do not like it

      but why this code is giving RTE , I am taking mod before converting it to String , so won't that number be less than 998244353.

      code
      • »
        »
        »
        »
        3 years ago, hide # ^ |
         
        Vote: I like it 0 Vote: I do not like it

        Again.. the string can be larger suppose the string is of size $$$1e5$$$ after first $$$1e5$$$ appending queries and now $$$1e5$$$ ans queries so your code will go kinda $$$O(n^2)$$$ [ $$$1e10$$$ iterations]

        I don't know Java so can't say what is happening for if (rem > 0).

        Suppose if you had converted your number to rem and for $$$2nd$$$ type of query you're erasing the first character of remainder which is incorrect. (You should remove the char at beginning of the original string).

  • »
    »
    3 years ago, hide # ^ |
     
    Vote: I like it 0 Vote: I do not like it

    The decimal representation of $$$S$$$ can be very LARGE.