結果

問題 No.232 めぐるはめぐる (2)
ユーザー testestesttestestest
提出日時 2016-06-02 04:24:51
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 20,096 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 23:00:48
合計ジャッジ時間 2,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
5,248 KB
testcase_01 AC 7 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 0 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 0 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 0 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class
    1 | t,y,x;
      | ^
main.c:1:1: warning: type defaults to ‘int’ in declaration of ‘t’ [-Wimplicit-int]
main.c:1:3: warning: type defaults to ‘int’ in declaration of ‘y’ [-Wimplicit-int]
    1 | t,y,x;
      |   ^
main.c:1:5: warning: type defaults to ‘int’ in declaration of ‘x’ [-Wimplicit-int]
    1 | t,y,x;
      |     ^
main.c:2:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
    2 | main(){
      | ^~~~
main.c: In function ‘main’:
main.c:3:9: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
    3 |         scanf("%d%d%d",&t,&x,&y);
      |         ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
  +++ |+#include <stdio.h>
    1 | t,y,x;
main.c:3:9: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
    3 |         scanf("%d%d%d",&t,&x,&y);
      |         ^~~~~
main.c:3:9: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:4:30: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration]
    4 |         if(t<x|t<y||t+x+y==1)puts("NO");
      |                              ^~~~
main.c:4:30: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’
main.c:8:35: warning: implicit declaration of function ‘putchar’ [-Wimplicit-function-declaration]
    8 |                         if(x<t-1){putchar('<');x++;}
      |                                   ^~~~~~~
main.c:8:35: note: include ‘<stdio.h>’ or provide a declaration of ‘putchar’

ソースコード

diff #

t,y,x;
main(){
	scanf("%d%d%d",&t,&x,&y);
	if(t<x|t<y||t+x+y==1)puts("NO");
	else{
		puts("YES");
		while(t){
			if(x<t-1){putchar('<');x++;}
			else if(x!=0){putchar('>');x--;}
			if(y%2==t%2){
				if(y<t-1){putchar('v');y++;}
				else if(y!=0){putchar('^');y--;}
			}
			putchar('\n');
			t--;
		}
	}
	return 0;
}
0