結果

問題 No.232 めぐるはめぐる (2)
ユーザー itezpaceitezpace
提出日時 2016-09-15 07:37:35
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
J_TLE  
(最初)
実行時間 -
コード長 990 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 60,328 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-16 15:50:19
合計ジャッジ時間 4,770 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace  std;
int main(){
  int t,a,b;
  cin>>t>>a>>b;
  int m=min(a,b);
  int d=a+b-m;
  if(t-d<0){
    cout<<"NO"<<endl;;
  } else if(t-d==1){
    if(m==0){
      cout<<"NO"<<endl;;
    } else {
      cout<<"YES"<<endl;
      for(int i=0; i<m-1; ++i){
        cout<<"^>"<<endl;
      }
      cout<<"^"<<endl;
      cout<<">"<<endl;
    }
  } else {
    cout<<"YES"<<endl;
    for(int i=0; i<m; ++i){
      cout<<"^>"<<endl;
    }
    if(t-d==2){
      cout<<">"<<endl;
      cout<<"<"<<endl;
    }else if(t-d==3){
      cout<<"^>"<<endl;
      cout<<"v"<<endl;
      cout<<"<"<<endl;
    } else if(t-d==4){
      cout<<">"<<endl;
      cout<<"<"<<endl;
      cout<<">"<<endl;
      cout<<"<"<<endl;
    } else if(t-d>=5){
      cout<<"^>"<<endl;
      cout<<"v"<<endl;
      cout<<"<"<<endl;
      int e=t-d-3;
      int f=e/2;
      for(int i=0; i<f; ++i){
        cout<<">"<<endl;
        cout<<"<"<<endl;
      }
    }
  }
  return 0;
}
0