Submission #1612398


Source Code Expand

#include <bits/stdc++.h>

using namespace std;


int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  string ans;
  int sx, sy, tx, ty;
  cin >> sx >> sy >> tx >> ty;
  for (int y = sy; y < ty; ++y) ans += 'U';
  for (int x = sx; x < tx; ++x) ans += 'R';
  for (int y = sy; y < ty; ++y) ans += 'D';
  for (int x = sx; x < tx; ++x) ans += 'L';
  ans += 'L';
  for (int y = sy; y <= ty; ++y) ans += 'U';
  for (int x = sx; x <= tx; ++x) ans += 'R';
  ans += 'D';
  ans += 'R';
  for (int y = sy; y <= ty; ++y) ans += 'D';
  for (int x = sx; x <= tx; ++x) ans += 'L';
  ans += 'U';
  cout << ans << endl;
  return 0;
}

Submission Info

Submission Time
Task C - Back and Forth
User bula
Language C++14 (GCC 5.4.1)
Score 300
Code Size 657 Byte
Status AC
Exec Time 1 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 1 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