KEPuzOfficial's blog

By KEPuzOfficial, 8 months ago, translation, In English

I invite everyone to the contest, which will take place on August 23, 2025 at 14:35UTC. Interesting problems await you in the contest.

Contest info:

  • Number of problems: 9-10

  • Difficulty of problems: <= 2400

  • Duration: 3 hours

  • Contest type: ACM20M

  • Languages: C++, Python, C, Kotlin, Haskell, R, Nodejs, PHP, C#, Java, Rust, Go

Link to the platform: https://kep.uz/competitions/contests/

P.S. Registration on the platform only via Gmail/Github.

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

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

Who is eligible for prizes?

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

how can anyone contact the admins or support if they need to ?

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

I have registered, but it forced make the registration unrated, why?

  • »
    »
    8 months ago, hide # ^ |
     
    Vote: I like it +3 Vote: I do not like it

    You will not participate in unrated. You can buy it for coins by clicking on the button to participate in unrated. (If you buy it, you will participate in unrated, if you don't buy it, you will participate in rated).

    Sorry, my English is bad

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

The C++ compiler says its C++23, but the value of the __cplusplus macro is 201703, and some C++ features like concepts are not available.

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

When I try to read the input of problem G:

  int n, q;
  cin >> n >> q;
  for (int i = 1; i <= n; i++) {
    cin >> a[i];
  }
  string A, B;
  cin >> A >> B;
  assert(A.size() == n && B.size() == n);

it keeps getting RTE on test #5. Please check the correctness of that test. Thanks!