QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#684641#6431. Oops, It's Yesterday Twice Morecatch-up-from-behind#WA 0ms3656kbC++17602b2024-10-28 14:55:162024-10-28 14:55:17

Judging History

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

  • [2024-10-28 14:55:17]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3656kb
  • [2024-10-28 14:55:16]
  • 提交

answer

// sis puella oier
#include <bits/stdc++.h>
using namespace std;
// #define int long long
typedef long long ll;
ll read(){
    ll xx = 0, f = 1; char ch = getchar();
    for (;!isdigit(ch); ch = getchar())f = (ch == '-' ? -1 : 1);
    for (; isdigit(ch); ch = getchar())xx = (xx << 3) + (xx << 1) + ch - '0';
    return xx * f;
}
signed main(){
    int n = read(), a = read(), b = read();
    for (int i = 1; i < n; ++i)printf("L");
    for (int i = 1; i < n; ++i)printf("U");
    for (int i = 1; i < a; ++i)printf("R");
    for (int i = 1; i < b; ++i)printf("D");
    return 0;
}


详细

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3656kb

input:

3 3 3

output:

LLUURRDD

result:

wrong answer Too long.