結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | itezpace |
提出日時 | 2016-09-15 07:44:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,174 bytes |
コンパイル時間 | 425 ms |
コンパイル使用メモリ | 57,724 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 06:00:52 |
合計ジャッジ時間 | 3,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
5,248 KB |
testcase_01 | AC | 117 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | WA | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main(){ int t,a,b; cin>>t>>a>>b; int m=min(a,b); int d=a+b-m; if(t-d<0){ cout<<"NO"<<endl;; } else if(t-d==1){ if(m==0){ cout<<"NO"<<endl;; } else { cout<<"YES"<<endl; for(int i=0; i<m-1; ++i){ cout<<"^>"<<endl; } cout<<"^"<<endl; cout<<">"<<endl; } } else { cout<<"YES"<<endl; for(int i=0; i<m; ++i){ cout<<"^>"<<endl; } if(t-d==2){ cout<<">"<<endl; cout<<"<"<<endl; }else if(t-d==3){ cout<<"^>"<<endl; cout<<"v"<<endl; cout<<"<"<<endl; } else if(t-d==4){ cout<<">"<<endl; cout<<"<"<<endl; cout<<">"<<endl; cout<<"<"<<endl; } else if(t-d>=5){ int e=t-d; if(e%2==1){ cout<<"^>"<<endl; cout<<"v"<<endl; cout<<"<"<<endl; e-=3; int f=e/2; for(int i=0; i<f; ++i){ cout<<">"<<endl; cout<<"<"<<endl; } } else { int f=e/2; for(int i=0; i<f; ++i){ cout<<">"<<endl; cout<<"<"<<endl; } } } } return 0; }