結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | 184 |
提出日時 | 2015-06-27 00:44:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,112 bytes |
コンパイル時間 | 486 ms |
コンパイル使用メモリ | 54,932 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 19:43:04 |
合計ジャッジ時間 | 2,309 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 0 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 1 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 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 0 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 0 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 0 ms
5,376 KB |
testcase_24 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:12:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | int t,a,b;scanf("%d%d%d",&t,&a,&b); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cstdlib> #include <cmath> #include <string> #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(len==1){ if(b){ if(b>0)printf(">\n"); else printf("<\n");c--; } else{ if(a>0)printf("^\n"); else printf("v\n");r--; } len--; } else{ if(b>0)printf(">\n"); else printf("<\n"); if(a>0)printf("^\n"); else printf("v\n"); len-=2;r--,c--; } } rc=len-min(r,c); for(int i=0;i<rc;i++){ if(c>r){ if(b>0)printf(">\n"); else printf("<\n"); } else{ if(a>0)printf("^\n"); else printf("v\n"); } } len-=rc; 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; }