結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | 0w1 |
提出日時 | 2016-11-29 15:25:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,138 bytes |
コンパイル時間 | 1,359 ms |
コンパイル使用メモリ | 168,980 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-05 15:13:17 |
合計ジャッジ時間 | 5,153 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
10,624 KB |
testcase_01 | AC | 115 ms
5,376 KB |
testcase_02 | AC | 121 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; const string msg[] = { "NO", "YES" }; signed main(){ int T, A, B; cin >> T >> A >> B; if( max( A, B ) > T ) cout << msg[ 0 ] << endl, exit( 0 ); cout << msg[ 1 ] << endl; int mov = T - ( max( A, B ) - min( A, B ) ) - min( A, B ); for( int i = 0; i < max( A, B ) - min( A, B ); ++i ){ if( mov == 1 ){ if( A == max( A, B ) ) cout << "^v"[ A > 0 ] << ">" << endl, cout << "<" << endl; else cout << "<>"[ B > 0 ] << "^" << endl, cout << "v" << endl; --mov; continue; } if( A == max( A, B ) ) cout << "^v"[ A > 0 ] << endl; else cout << "<>"[ B > 0 ] << endl; } for( int i = 0; i < min( A, B ); ++i ){ if( mov == 1 ){ cout << "<>"[ B > 0 ] << endl; cout << "v^"[ A > 0 ] << endl; --mov; continue; } cout << "<>"[ B > 0 ] << "v^"[ A > 0 ] << endl; } if( mov & 1 ){ cout << ">^" << endl; cout << "v" << endl; cout << "<" << endl; mov -= 3; } while( mov ) cout << ">" << endl, cout << "<" << endl, mov -= 2; return 0; }