QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#218105#6431. Oops, It's Yesterday Twice MoreHurrikale#WA 0ms1520kbC++14189b2023-10-17 18:33:452023-10-17 18:33:46

Judging History

你现在查看的是最新测评结果

  • [2023-10-17 18:33:46]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:1520kb
  • [2023-10-17 18:33:45]
  • 提交

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');
}

詳細信息

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