結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | Mister |
提出日時 | 2020-08-02 15:07:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,028 bytes |
コンパイル時間 | 661 ms |
コンパイル使用メモリ | 79,700 KB |
実行使用メモリ | 9,620 KB |
最終ジャッジ日時 | 2024-07-18 14:25:12 |
合計ジャッジ時間 | 2,616 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
9,472 KB |
testcase_01 | AC | 11 ms
9,352 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 5 ms
9,620 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 4 ms
7,040 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <string> void fail() { std::cout << "NO\n"; std::exit(0); } void solve() { int t, a, b; std::cin >> t >> a >> b; std::vector<std::string> xs(t, ""), ys(t, ""); { if (a > t) fail(); for (int i = 0; i < a; ++i) xs[i].push_back('>'); for (int i = a; i + 1 < t; i += 2) { xs[i].push_back('>'); xs[i + 1].push_back('<'); } std::reverse(xs.begin(), xs.end()); } { if (b > t) fail(); for (int i = 0; i < b; ++i) ys[i].push_back('^'); for (int i = b; i + 1 < t; i += 2) { ys[i].push_back('^'); ys[i + 1].push_back('v'); } } if (xs.front().empty() && ys.front().empty()) fail(); std::cout << "YES\n"; for (int i = 0; i < t; ++i) { std::cout << xs[i] << ys[i] << "\n"; } } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }