Topcoder_Updates's blog

By Topcoder_Updates, history, 2 years ago, In English

Topcoder SRM 820 is scheduled to start at 11:00 UTC-5 on Dec 28, 2021.

Registration is now open for the SRM in the Arena or Applet and closes at 10:55 UTC-5 .The coding phase will start at 11:05 UTC-5, so make sure that you are all ready to go. Click here to see what time it starts in your area.

Please take a look at our How to Compete guide to understand Topcoder Algorithm rounds better.

Some Important Links:: Match Results (match results, rating changes, challenges, individual test case results), Problem Archive, Problem Writing, Algorithm Rankings, Editorials and Older Editorials(SRM 710 and before),

Best of luck!
- The Topcoder Team

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

| Write comment?
»
2 years ago, # |
  Vote: I like it +10 Vote: I do not like it

Hey! Topcoder_Updates Please make SRM 820 visible in the practice room.

Thanks!

»
2 years ago, # |
  Vote: I like it +72 Vote: I do not like it

New rating for tourist: 4006. Congrats!

»
2 years ago, # |
  Vote: I like it +13 Vote: I do not like it

Are there troubles with ll-values in test cases for NailingABanner and BannerWithNails? With NailingABanner: test case 2 with input 3 should return 576460752303423488. If solution returns it, it is displayed as "Return value: 576460752303423500" in the test report, but evaluated correctly as "correct". Ok, it may be not so annoying, but in BannerWithNails it is an inverted situation. Solution should get 576460752303423488 as input, but gets 576460752303423500, evaluated as N/A. Test case 4 should have maximal possible input 2^60, but solution gets 1152921504606847000 == 2^60 + 24, what is resulting in test error "X must be between 0 and 2^60, inclusive". Looks like ll-values being casted to single and back.

Is it only now in practice room or has it already been so during the tournament? Should one know this "feature"?