結果

問題 No.232 めぐるはめぐる (2)
ユーザー latte0119latte0119
提出日時 2015-06-27 00:59:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 716 bytes
コンパイル時間 1,350 ms
コンパイル使用メモリ 159,400 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 12:33:13
合計ジャッジ時間 3,231 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int l[100000],r[100000];
int main(){
    int T,A,B;
    cin>>T>>A>>B;

    if((T==1&&A==0&&B==0)||(T<A||T<B)){
        cout<<"NO"<<endl;
        return 0;
    }

    cout<<"YES"<<endl;

    int cur=0;

    while(A){
        l[cur++]=1;
        A--;
    }

    while(cur+1<T){
        l[cur++]=1;
        l[cur++]=-1;
    }

    cur=0;

    while(B){
        r[cur++]=1;
        B--;
    }

    while(cur+1<T){
        r[cur++]=1;
        r[cur++]=-1;
    }

    reverse(r,r+T);

    for(int i=0;i<T;i++){
        if(l[i]==1)cout<<"^";
        if(l[i]==-1)cout<<"v";
        if(r[i]==1)cout<<">";
        if(r[i]==-1)cout<<"<";
        cout<<endl;
    }

    return 0;
}
0