結果

問題 No.232 めぐるはめぐる (2)
ユーザー 👑 tatt61880tatt61880
提出日時 2019-03-19 00:18:03
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,328 bytes
コンパイル時間 1,593 ms
コンパイル使用メモリ 164,580 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-26 14:54:50
合計ジャッジ時間 4,736 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
4,380 KB
testcase_01 AC 10 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 WA -
testcase_09 AC 2 ms
4,380 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
4,384 KB
testcase_22 AC 2 ms
4,384 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//{{{
#include <bits/stdc++.h>
using namespace std;
#define repX(a,b,c,x,...) x
#define repN(a) repX a
#define rep(...) repN((__VA_ARGS__,rep3,rep2,loop))(__VA_ARGS__)
#define rrep(...) repN((__VA_ARGS__,rrep3,rrep2))(__VA_ARGS__)
#define loop(n) rep2(i_,n)
#define rep2(i,n) rep3(i,0,n)
#define rep3(i,begin,end) for(int i=(int)(begin),i##_end=(int)(end);i<i##_end;++i)
#define rrep2(i,n) rrep3(i,n,0)
#define rrep3(i,begin,end) for(int i=(int)(begin-1),i##_end=(int)(end);i>=i##_end;--i)
#define foreach(x,a) for(auto&x:a)
using ll=long long;
const ll mod=(ll)1e9+7;
//}}}

int main(){
  ll T, A, B;
  cin >> T >> A >> B;
  bool ans = true;
  if(abs(A) > T || abs(B) > T){
    ans = false;
  }
  if(T == 1 && A == 0 && B == 0){
    ans = false;
  }
  if(!ans){
    puts("NO");
    return 0;
  }
  puts("YES");
  int x = 0;
  int y = 0;
  auto moveY = [&] (int dy) {
    y += dy;
    printf(dy == 1 ? "^" : "v");
  };
  auto moveX = [&] (int dx) {
    x += dx;
    printf(dx == 1 ? ">" : "<");
  };
  rep(t, 1, T + 1){
    if(t == 1 && (T - A) % 2 != 0){
      moveY(B - y > 0 ? 1 : -1);
      puts("");
      continue;
    }
    if(t == T && (T - B) % 2 != 0){
      moveX(A - x > 0 ? 1 : -1);
      puts("");
      continue;
    }
    moveX(A - x > 0 ? 1 : -1);
    moveY(B - y > 0 ? 1 : -1);
    puts("");
  }
  return 0;
}
0