結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | TLwiegehtt |
提出日時 | 2015-07-23 07:37:56 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,576 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 22,272 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 12:12:49 |
合計ジャッジ時間 | 1,375 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 4 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 0 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 0 ms
6,940 KB |
testcase_10 | AC | 0 ms
6,940 KB |
testcase_11 | AC | 0 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | AC | 0 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | AC | 0 ms
6,940 KB |
testcase_17 | AC | 0 ms
6,940 KB |
testcase_18 | AC | 0 ms
6,944 KB |
testcase_19 | AC | 0 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 0 ms
6,940 KB |
testcase_23 | AC | 0 ms
6,940 KB |
testcase_24 | AC | 0 ms
6,940 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:15:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d %d %d", &T, &A, &B); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int min(int a, int b){ if(a<b){return a;} return b; } int main(void){ int i,j; int A,B,T; int dir[8] = {0}; int minStep; int tt; scanf("%d %d %d", &T, &A, &B); tt = T; dir[0]=A; dir[1]=B; dir[2]=0; dir[3]=0; dir[4]=0; dir[4] = min(A,B); dir[0]-= dir[4]; dir[1]-= dir[4]; minStep = dir[0] + dir[1] + dir[4]; if( A == 0 && B == 0){ if( T== 1){ printf("NO\n"); }else{ if(T%2==1){ dir[2] = 1; dir[3] = 1; dir[4] = 1; } for(i=0;i<5;i++){ for(j=0;j<dir[i];j++){ if(i==0){ printf("^\n"); }else if(i==1){ printf(">\n"); }else if(i==2){ printf("v\n"); }else if(i==3){ printf("<\n"); }else if(i==4){ printf("^>\n"); } tt--; } } for(i=0;i<tt;i+=2){ printf("<\n"); printf(">\n"); } } }else{ if(T < minStep ){ printf("NO\n"); }else{ printf("YES\n"); if((T-minStep)%2 == 1){ if(dir[4] != 0){ dir[4] -= 1; dir[1] += 1; dir[0] += 1; }else{ if(A==0){ dir[4] += 1; dir[2] += 1; dir[1] -= 1; }else{ dir[4] += 1; dir[3] += 1; dir[0] -= 1; } } } for(i=0;i<5;i++){ for(j=0;j<dir[i];j++){ if(i==0){ printf("^\n"); }else if(i==1){ printf(">\n"); }else if(i==2){ printf("v\n"); }else if(i==3){ printf("<\n"); }else if(i==4){ printf("^>\n"); } tt--; } } for(i=0;i<tt;i+=2){ printf("<\n"); printf(">\n"); } } } return 0; }