QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#218105 | #6431. Oops, It's Yesterday Twice More | Hurrikale# | WA | 0ms | 1520kb | C++14 | 189b | 2023-10-17 18:33:45 | 2023-10-17 18:33:46 |
Judging History
answer
#include<cstdio>
using namespace std;
int N,A,B;
int main()
{
scanf("%d%d%d",&N,&A,&B);
for(int i=1;i<A;++i)
putchar('D');
for(int j=1;j<B;++j)
putchar('R');
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 1352kb
input:
3 3 3
output:
DDRR
result:
ok n=3, x=3, y=3
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 1520kb
input:
4 3 2
output:
DDR
result:
wrong answer Failed