Submission #3020621


Source Code Expand

#include<iostream>
#include<cmath>
#include<cstdio>
using namespace std;
int main(){
    int sx,sy,tx,ty;
    cin >> sx >> sy >> tx >> ty;
    for(int i=0;i<(tx-sx);i++)  cout << "R";
    for(int i=0;i<(ty-sy);i++)  cout << "U";
    for(int i=0;i<(tx-sx);i++)  cout << "L";
    for(int i=0;i<(ty-sy);i++)  cout << "D";
    cout << "D";
    for(int i=0;i<=(tx-sx);i++)  cout << "R";
    for(int i=0;i<=(ty-sy);i++)  cout << "U";
    cout << "LU";
    for(int i=0;i<=(tx-sx);i++)  cout << "L";
    for(int i=0;i<=(ty-sy);i++)  cout << "D";
    cout << "R";
    cout << endl;
    return 0;
}

Submission Info

Submission Time
Task C - Back and Forth
User thash
Language C++14 (GCC 5.4.1)
Score 300
Code Size 610 Byte
Status AC
Exec Time 2 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 2
AC × 12
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
All sample_01.txt, sample_02.txt, subtask_1_01.txt, subtask_1_02.txt, subtask_1_03.txt, subtask_1_04.txt, subtask_1_05.txt, subtask_1_06.txt, subtask_1_07.txt, subtask_1_08.txt, subtask_1_09.txt, subtask_1_10.txt
Case Name Status Exec Time Memory
sample_01.txt AC 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
subtask_1_01.txt AC 1 ms 256 KB
subtask_1_02.txt AC 2 ms 256 KB
subtask_1_03.txt AC 1 ms 256 KB
subtask_1_04.txt AC 1 ms 256 KB
subtask_1_05.txt AC 1 ms 256 KB
subtask_1_06.txt AC 1 ms 256 KB
subtask_1_07.txt AC 1 ms 256 KB
subtask_1_08.txt AC 1 ms 256 KB
subtask_1_09.txt AC 1 ms 256 KB
subtask_1_10.txt AC 1 ms 256 KB