Task: | Robot |
Sender: | SpeedOfMagic |
Submission time: | 2019-01-19 17:13:50 +0200 |
Language: | C++ |
Status: | READY |
Result: | 12 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 12 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.03 s | 1 | details |
#2 | ACCEPTED | 0.01 s | 1 | details |
#3 | ACCEPTED | 0.01 s | 1 | details |
#4 | ACCEPTED | 0.03 s | 1 | details |
#5 | ACCEPTED | 0.02 s | 1 | details |
#6 | ACCEPTED | 0.01 s | 1 | details |
#7 | ACCEPTED | 0.02 s | 1 | details |
#8 | ACCEPTED | 0.02 s | 1 | details |
#9 | ACCEPTED | 0.02 s | 2 | details |
#10 | ACCEPTED | 0.02 s | 2 | details |
#11 | ACCEPTED | 0.02 s | 2 | details |
#12 | WRONG ANSWER | 0.01 s | 2 | details |
#13 | WRONG ANSWER | 0.02 s | 2 | details |
#14 | WRONG ANSWER | 0.01 s | 2 | details |
#15 | WRONG ANSWER | 0.01 s | 2 | details |
#16 | WRONG ANSWER | 0.02 s | 2 | details |
#17 | WRONG ANSWER | 0.03 s | 2 | details |
#18 | ACCEPTED | 0.02 s | 3 | details |
#19 | ACCEPTED | 0.01 s | 3 | details |
#20 | ACCEPTED | 0.02 s | 3 | details |
#21 | WRONG ANSWER | 0.03 s | 3 | details |
#22 | WRONG ANSWER | 0.02 s | 3 | details |
#23 | WRONG ANSWER | 0.04 s | 3 | details |
#24 | WRONG ANSWER | 0.02 s | 3 | details |
#25 | WRONG ANSWER | 0.02 s | 3 | details |
#26 | WRONG ANSWER | 0.02 s | 3 | details |
#27 | ACCEPTED | 0.01 s | 3 | details |
#28 | WRONG ANSWER | 0.01 s | 3 | details |
#29 | WRONG ANSWER | 0.01 s | 3 | details |
#30 | WRONG ANSWER | 0.01 s | 3 | details |
#31 | WRONG ANSWER | 0.02 s | 3 | details |
#32 | WRONG ANSWER | 0.02 s | 3 | details |
#33 | WRONG ANSWER | 0.02 s | 3 | details |
#34 | WRONG ANSWER | 0.03 s | 3 | details |
#35 | WRONG ANSWER | 0.01 s | 3 | details |
#36 | WRONG ANSWER | 0.02 s | 3 | details |
#37 | WRONG ANSWER | 0.02 s | 3 | details |
#38 | WRONG ANSWER | 0.02 s | 3 | details |
#39 | WRONG ANSWER | 0.02 s | 3 | details |
Code
/** MIT License Copyright (c) 2018-2019(!) Vasilyev Daniil **/ #include <bits/stdc++.h> using namespace std; template<typename T> using v = vector<T>; #define int long long typedef long double ld; typedef string str; typedef vector<int> vint; #define rep(a, l, r) for(int a = (l); a < (r); a++) #define pb push_back #define fs first #define sc second #define sz(a) ((int) a.size()) const long long inf = 4611686018427387903; //2^62 - 1 #if 0 //FileIO const string fileName = ""; ifstream fin ((fileName == "" ? "input.txt" : fileName + ".in" )); ofstream fout((fileName == "" ? "output.txt" : fileName + ".out")); #define get fin >> #define put fout << #else #define get cin >> #define put cout << #endif #define eol put endl void read() {} template<typename Arg,typename... Args> void read (Arg& arg,Args&... args){get (arg) ;read(args...) ;} void print(){} template<typename Arg,typename... Args> void print(Arg arg,Args... args){put (arg)<<" ";print(args...);} int getInt(){int a; get a; return a;} //code starts here const int mod = 1e9 + 7; void run() { int n, m; read(n, m); rep(i, 0, m - 1) put "R"; put "B\nB"; rep(i, 1, m - 1) put "R"; put "R"; eol; } signed main() {srand(time(0)); ios::sync_with_stdio(0); cin.tie(0); put fixed << setprecision(12); run(); return 0;}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
2 2 |
correct output |
---|
RG GR |
user output |
---|
RB BR |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
2 4 |
correct output |
---|
RRRG GRRR |
user output |
---|
RRRB BRRR |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
2 6 |
correct output |
---|
RRRRRG GRRRRR |
user output |
---|
RRRRRB BRRRRR |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
2 10 |
correct output |
---|
RRRRRRRRRG GRRRRRRRRR |
user output |
---|
RRRRRRRRRB BRRRRRRRRR |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
2 50 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 6
Group: 1
Verdict: ACCEPTED
input |
---|
2 80 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 7
Group: 1
Verdict: ACCEPTED
input |
---|
2 98 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 8
Group: 1
Verdict: ACCEPTED
input |
---|
2 100 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 9
Group: 2
Verdict: ACCEPTED
input |
---|
2 2 |
correct output |
---|
RG GR |
user output |
---|
RB BR |
Test 10
Group: 2
Verdict: ACCEPTED
input |
---|
2 4 |
correct output |
---|
RRRG GRRR |
user output |
---|
RRRB BRRR |
Test 11
Group: 2
Verdict: ACCEPTED
input |
---|
2 6 |
correct output |
---|
RRRRRG GRRRRR |
user output |
---|
RRRRRB BRRRRR |
Test 12
Group: 2
Verdict: WRONG ANSWER
input |
---|
4 2 |
correct output |
---|
RG GG GG GR |
user output |
---|
RB BR |
Test 13
Group: 2
Verdict: WRONG ANSWER
input |
---|
4 4 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
RRRB BRRR |
Test 14
Group: 2
Verdict: WRONG ANSWER
input |
---|
4 6 |
correct output |
---|
RRRRRG GBGRGG GGRBRG GRRBRR |
user output |
---|
RRRRRB BRRRRR |
Test 15
Group: 2
Verdict: WRONG ANSWER
input |
---|
6 2 |
correct output |
---|
RG GG GG GG GG ... |
user output |
---|
RB BR |
Test 16
Group: 2
Verdict: WRONG ANSWER
input |
---|
6 4 |
correct output |
---|
RRRG RGBG RRGG BBGG GRBG ... |
user output |
---|
RRRB BRRR |
Test 17
Group: 2
Verdict: WRONG ANSWER
input |
---|
6 6 |
correct output |
---|
RRRRRG GBGRBG GGGBBG GGGBBG GGRBRG ... |
user output |
---|
RRRRRB BRRRRR |
Test 18
Group: 3
Verdict: ACCEPTED
input |
---|
2 2 |
correct output |
---|
RG GR |
user output |
---|
RB BR |
Test 19
Group: 3
Verdict: ACCEPTED
input |
---|
2 4 |
correct output |
---|
RRRG GRRR |
user output |
---|
RRRB BRRR |
Test 20
Group: 3
Verdict: ACCEPTED
input |
---|
2 6 |
correct output |
---|
RRRRRG GRRRRR |
user output |
---|
RRRRRB BRRRRR |
Test 21
Group: 3
Verdict: WRONG ANSWER
input |
---|
4 2 |
correct output |
---|
RG GG GG GR |
user output |
---|
RB BR |
Test 22
Group: 3
Verdict: WRONG ANSWER
input |
---|
4 4 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
RRRB BRRR |
Test 23
Group: 3
Verdict: WRONG ANSWER
input |
---|
4 6 |
correct output |
---|
RRRRRG GBGRGG GGRBRG GRRBRR |
user output |
---|
RRRRRB BRRRRR |
Test 24
Group: 3
Verdict: WRONG ANSWER
input |
---|
6 2 |
correct output |
---|
RG GG GG GG GG ... |
user output |
---|
RB BR |
Test 25
Group: 3
Verdict: WRONG ANSWER
input |
---|
6 4 |
correct output |
---|
RRRG RGBG RRGG BBGG GRBG ... |
user output |
---|
RRRB BRRR |
Test 26
Group: 3
Verdict: WRONG ANSWER
input |
---|
6 6 |
correct output |
---|
RRRRRG GBGRBG GGGBBG GGGBBG GGRBRG ... |
user output |
---|
RRRRRB BRRRRR |
Test 27
Group: 3
Verdict: ACCEPTED
input |
---|
2 100 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 28
Group: 3
Verdict: WRONG ANSWER
input |
---|
4 20 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRG GBBBBBBBBBBBBBBBGRGG GGRRRRRRRRRRRRRRRBRG GRRRRRRRRRRRRRRRRBRR |
user output |
---|
RRRRRRRRRRRRRRRRRRRB BRRRRRRRRRRRRRRRRRRR |
Test 29
Group: 3
Verdict: WRONG ANSWER
input |
---|
4 100 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 30
Group: 3
Verdict: WRONG ANSWER
input |
---|
10 10 |
correct output |
---|
RRRRRRRRRG GBGRBBGRBG GGGBBGGBBG GGGBBGGBBG GGGBBGGBBG ... |
user output |
---|
RRRRRRRRRB BRRRRRRRRR |
Test 31
Group: 3
Verdict: WRONG ANSWER
input |
---|
12 12 |
correct output |
---|
RRRRRRRRRRRG RGBBGRBBGRBG RRBGGBBGGBBG RRBGGBBGGBBG RRBGGBBGGBBG ... |
user output |
---|
RRRRRRRRRRRB BRRRRRRRRRRR |
Test 32
Group: 3
Verdict: WRONG ANSWER
input |
---|
10 12 |
correct output |
---|
RRRRRRRRRRRG RGBBGRBBGRBG RRBGGBBGGBBG RRBGGBBGGBBG RRBGGBBGGBBG ... |
user output |
---|
RRRRRRRRRRRB BRRRRRRRRRRR |
Test 33
Group: 3
Verdict: WRONG ANSWER
input |
---|
12 10 |
correct output |
---|
RRRRRRRRRG GBGRBBGRBG GGGBBGGBBG GGGBBGGBBG GGGBBGGBBG ... |
user output |
---|
RRRRRRRRRB BRRRRRRRRR |
Test 34
Group: 3
Verdict: WRONG ANSWER
input |
---|
10 90 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 35
Group: 3
Verdict: WRONG ANSWER
input |
---|
90 10 |
correct output |
---|
RRRRRRRRRG GBGRBBGRBG GGGBBGGBBG GGGBBGGBBG GGGBBGGBBG ... |
user output |
---|
RRRRRRRRRB BRRRRRRRRR |
Test 36
Group: 3
Verdict: WRONG ANSWER
input |
---|
100 100 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 37
Group: 3
Verdict: WRONG ANSWER
input |
---|
98 100 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 38
Group: 3
Verdict: WRONG ANSWER
input |
---|
100 98 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |
Test 39
Group: 3
Verdict: WRONG ANSWER
input |
---|
98 98 |
correct output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... |
user output |
---|
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRR... Truncated |