My rating was 1599 after round 1095 before rollback, and after rollback it looks weird, maybe adding some notes will make it better? 
| № | Пользователь | Рейтинг |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | Kevin114514 | 3678 |
| 3 | VivaciousAubergine | 3647 |
| 4 | jiangly | 3582 |
| 5 | strapple | 3515 |
| 6 | tourist | 3473 |
| 7 | Radewoosh | 3418 |
| 8 | Um_nik | 3376 |
| 9 | maroonrk | 3361 |
| 10 | turmax | 3345 |
| Страны | Города | Организации | Всё → |
| № | Пользователь | Вклад |
|---|---|---|
| 1 | Qingyu | 162 |
| 2 | adamant | 148 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 143 |
| 5 | errorgorn | 141 |
| 6 | cry | 138 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 10 | soullless | 133 |
My rating was 1599 after round 1095 before rollback, and after rollback it looks weird, maybe adding some notes will make it better? 
When I was solving a problem yesterday, I came up with a possible way but couldn't guarantee that it'll pass, since I wasn't able to come up with another solution then, I decided to submit it and it surprisingly passed!
Problem:https://mirror.codeforces.com/contest/1941/problem/F
My submission:https://mirror.codeforces.com/contest/1941/submission/256085119
But after a few hour, I realized that the solution can be hacked and came up with the test.
#include<bits/stdc++.h>
#define pi 3.14159265358979323846
#define eb emplace_back
#define ll long long
#define w(t) while(t--)
#define F first
#define S second
#define pii pair<int,int>
#define pll pair<ll,ll>
#define iofast ios::sync_with_stdio(0);cin.tie(0);
using namespace std;
//give sin(),cos() radian, and asin(),acos() gives you radian
void solve(){
int n=2,m=200000,k=200000;
cout<<n<<' '<<m<<' '<<k<<'\n'<<"1 1000000000\n";
for(int i=0;i<m;i++){
if(i) cout<<' ';
cout<<i+1;
}
cout<<'\n';
for(int i=0;i<k;i++){
if(i) cout<<' ';
cout<<i+1;
}
cout<<'\n';
return;
}
int main(){
iofast
int t=1;
cout<<t<<'\n';
w(t) solve();
return 0;
}
And that's why now I have some questions, is it possible to add any test now, and if it's possible, will this test be added? Thanks for your answer.
| Название |
|---|


