結果

問題 No.232 めぐるはめぐる (2)
ユーザー zaichuzaichu
提出日時 2016-01-15 22:02:21
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 1,167 ms
コンパイル使用メモリ 159,036 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-09-19 19:08:07
合計ジャッジ時間 5,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main(){
	ll t,a,b;
	cin >> t >> a >> b;
	if((t < a or t < b) or (a == 0 and b == 0 and t == 1) ){
		cout << "NO" << endl;
		return 0;
	}
	cout << "YES" << endl;
	while(max(a,b) != 0){
		if(a != 0){
			cout << ">";
			a--;
		}
		if(b != 0){
			cout << "^";
			b--;
		}
		cout << endl;
		t--;
	}
	while(t != 0){
		if(t % 2 == 0){
			cout << ">" << endl;
			cout << "<" << endl;
			t -= 2;
		}else if(t % 2 == 1){
			cout << ">^" << endl;
			cout << "<" << endl;
			cout << "v" << endl;
		t -= 3;
		}
	}
	return 0;
}
0