結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | testestest |
提出日時 | 2016-06-02 04:24:51 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 315 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 19,840 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-08 05:21:19 |
合計ジャッジ時間 | 2,578 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
5,248 KB |
testcase_01 | AC | 7 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 0 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 0 ms
6,820 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 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’
ソースコード
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; }