結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | 37kt_ |
提出日時 | 2015-09-10 19:18:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,290 bytes |
コンパイル時間 | 1,243 ms |
コンパイル使用メモリ | 160,600 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 05:13:25 |
合計ジャッジ時間 | 4,811 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | scanf("%d %d %d", &t, &a, &b); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
// BCC /* #include <cstdio> #include <algorithm> #include <iostream> #include <utility> #include <vector> #include <queue> */ // GCC #include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rrep(i, n) for (int i = (int)(n) - 1; i >= 0; i--) #define each(i, c) for (__typeof((c).begin()) i = (c).begin(); i != (c).end(); ++i) #define chmin(a, b) a = min(a, b) #define chmax(a, b) a = max(a, b) #define pb push_back #define mp make_pair typedef long long ll; const int INF = 1 << 28; const ll INFLL = 1ll << 56; const char *C = "^>v<"; int main() { int t, a, b; scanf("%d %d %d", &t, &a, &b); if (max(a, b) > t){ puts("NO"); return 0; } if (t + a + b == 1){ puts("NO"); return 0; } // 1: up, 2: right, 4: down, 8: left vector<int> res; rep(i, (t - max(a, b)) / 2){ res.pb(1); res.pb(4); } rep(i, max(a, b)){ int x = 0; if (i < a) x += 1; if (i < b) x += 2; res.pb(x); } if ((t - max(a, b)) & 1){ int x = res.back(); res.pop_back(); if (x == 3){ res.pb(1); res.pb(2); } else if (x == 1){ res.pb(3); res.pb(8); } else if (x == 2){ res.pb(3); res.pb(4); } } for (auto x : res){ rep(i, 4){ if (x & (1 << i)){ printf("%c", C[i]); } } puts(""); } }