結果

問題 No.232 めぐるはめぐる (2)
ユーザー 184184
提出日時 2015-06-26 23:23:21
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 39,628 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 18:30:04
合計ジャッジ時間 2,284 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 0 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 0 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 0 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 0 ms
5,376 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         int t,a,b;scanf("%d%d%d",&t,&a,&b);
      |                   ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>

using namespace std;

//namaega184
 
int main(){ 
	int t,a,b;scanf("%d%d%d",&t,&a,&b);
	if(t>=max(abs(a),abs(b))&&!(t==1&&!a&&!b)){ 
		int r=abs(a),c=abs(b),rc=min(r,c);
		int len=max(r,c);
		printf("YES\n");
		int llen=t-len;
		llen/=2;
		for(int i=0;i<llen;i++)printf(">\n<\n");
		if((t-len)%2){
			if(b>0)printf(">\n");
			else printf("<\n");
			if(a>0)printf("^\n");
			else printf("v\n");
			len--;
		}
		for(int i=0;i<len;i++){
			if(a>0&&b>0)printf("^>\n");
			else if(a>0&&b<=0)printf("^<\n");
			else if(a<=0&&b>0)printf("v>\n");
			else if(a<=0&&b<=0)printf("v<\n");
		} 
	} 
	else printf("NO\n");
	return 0;
}
0