Блог пользователя qwexd

Автор qwexd, история, 5 часов назад, По-английски
1121. Another Round
time limit per participant
2 hours
memory limit per participant
1 brain

You are given a Codeforces account and $$$n = 6$$$ problems, authored and prepared by qwexd and jeroenodb.

In one operation, you may choose a problem $$$i$$$ ($$$1 \le i \le n$$$) and submit a program intended to solve it.

Your task is to maximize your score before the time limit expires.

Input

The input consists of the problemset of Codeforces Round 1121 (Div. 2) . It will become available on Sep/13/2026 20:05 (Moscow time). Note the unusual start time. One of the problems is divided into two subtasks.

The round will be rated for participants with a rating below 2100. Participants with a rating of 2100 or higher are welcome to participate out of competition.

Score distribution: To be announced.

Output

For each problem you choose to solve, submit a correct program. You may solve the problems in any order.

Printing YES is not sufficient.

Note

We would like to thank:

It can be shown that every problem has a solution. The proofs will be published after the contest.

Good luck and have fun!

  • Проголосовать: нравится
  • +25
  • Проголосовать: не нравится

»
3 часа назад, скрыть # |
 
Проголосовать: нравится +6 Проголосовать: не нравится

As a tester, I may have started a trend with announcement posts :)

  • »
    »
    2 часа назад, скрыть # ^ |
     
    Проголосовать: нравится 0 Проголосовать: не нравится

    When I set a round the announcement will be encrypted and can only be decrypted with a private key I won't give to anyone. And also all the problems will be analytic number theory.

»
2 часа назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Thank you for making my bedtime 2 a.m.

»
2 часа назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

Before you add the score distribution put it in a Scoring section instead of where it is right now

Also I think you should note the unusual start time

»
96 минут назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится
/* 
 * Author: temporary1
 * Problem: 1121. Another Round
 * Time Created: 01:24:40 Sep/12/2026 (UTC+0)
 */
#include <bits/stdc++.h>
using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	int n = 6;
	vector<string> contest;
	for (int i = 1; i <= 6; ++i) {
		string problem;
		cin >> problem;
		contest.push_back(problem);
	}
	mt19937 rng(1121);
	shuffle(contest.begin(),contest.end(),rng);
	for (string problem : contest) {
		cout << "#include <bits/stdc++.h>" << '\n';
		cout << "using namespace std;" << '\n';
		cout << '\n';
		cout << "int main() {" << '\n';
		cout << "	ios_base::sync_with_stdio(false);" << '\n';
		cout << "	cin.tie(NULL);" << '\n';
		cout << "	cout << \"as a tester, i tested this problem\" << \'\\n\';" << '\n';
		cout << "	return 0;" << '\n';
		cout << "}" << '\n';
		cout << '\n';
	}
	return 0;
}

as a tester, i tested the round announcement

»
72 минуты назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

didn't have to call me out like that smh

»
62 минуты назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

thank you for making me not have to get up early

»
57 минут назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

as a tester, im glad i didnt end up on the shame board.

»
57 минут назад, скрыть # |
 
Проголосовать: нравится 0 Проголосовать: не нравится

please highlight the unusual start time, someone might not notice!