star_xingchen_c's blog

By star_xingchen_c, 3 years ago, In English

Hello Codeforces!

On 28.02.2021 16:35 (Московское время) we will host Codeforces Global Round 13.

It is the first round of a 2021 series of Codeforces Global Rounds. The rounds are open and rated for everybody.

The prizes for this round:

  • 30 best participants get a t-shirt.
  • 20 t-shirts are randomly distributed among those with ranks between 31 and 500, inclusive.

The prizes for the 6-round series in 2021:

  • In each round top-100 participants get points according to the table.
  • The final result for each participant is equal to the sum of points he gets in the four rounds he placed the highest.
  • The best 20 participants over all series get sweatshirts and place certificates.

Thanks to XTX, which in 2021 supported the global rounds initiative!

The problems were written and prepared by 3.141592653, Widowmaker, Ynoi, errorgorn, oolimry, star_xingchen_c, syksykCCC.

We would also like to thank:

You will have 3 hours to solve 9 problems. We encourage you to read all the problems and solve them all.

One of these problems is interactive, please see the guide of interactive problems if you are not familiar with it.

UPD1: Scoring distribution: 500-750-1000-1250-1750-2000-2250-3000-5000

UPD2: Tutorial published.

UPD3: System testing finished, congrats to the winners!

  1. maroonrk
  2. gop2024
  3. Petr
  4. jiangly
  5. RALZH
  6. qazswedx2
  7. sunset
  8. ecnerwala
  9. lumibons
  10. p_b_p_b

Full text and comments »

Announcement of Codeforces Global Round 13
  • Vote: I like it
  • +1092
  • Vote: I do not like it

By star_xingchen_c, history, 3 years ago, In English

This is a code from magician_man of 1455A - Strange Functions 100022199.

Notice that he used input[50] but not input[101].

I tried hack it but it did not get a RT.

How did it work?

#include<iostream>
#include<string>
#include<bits/stdc++.h>

using namespace std;

int main()
{
    int t,i;
    char input[50];
    cin >> t;
    for(i=1;i<=t;i++){
        cin >> input;
        cout << strlen(input) << endl;
    }
    return 0;
}

Full text and comments »

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

By star_xingchen_c, history, 4 years ago, In English

From a week ago,my computer cannot show images in Codeforces rightly.

I tried to change a browser,but it did not work at all.

And I can only link to it normally by using a VPN.

It was too bad,and is there anyone having the problem same to me?

Thanks. :-)

Full text and comments »

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