結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | kotatsugame |
提出日時 | 2019-10-12 07:30:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 672 bytes |
コンパイル時間 | 609 ms |
コンパイル使用メモリ | 65,024 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 10:32:29 |
合計ジャッジ時間 | 3,302 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
5,248 KB |
testcase_01 | AC | 125 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 127 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 5 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; int T,A,B; int X[1<<17],Y[1<<17]; main() { cin>>T>>A>>B; if(T<A||T<B) { cout<<"NO"<<endl; return 0; } for(int i=0;i<T;i++) { if(i<A) { X[i]+=1; } else { if(i+1<T) { X[i]+=1; X[i+1]+=2; i+=1; } } } for(int i=0;i<T;i++) { int j=T-i-1; if(i<B) { Y[j]+=1; } else { if(i+1<T) { Y[j]+=1; Y[j-1]+=2; i+=1; } } } bool flag=true; for(int i=0;i<T;i++)flag&=X[i]&&Y[i]; if(!flag) { cout<<"NO"<<endl; return 0; } cout<<"YES"<<endl; for(int i=0;i<T;i++) { if(X[i])cout<<(X[i]==1?'^':'v'); if(Y[i])cout<<(Y[i]==1?'>':'<'); cout<<endl; } }