結果
問題 | No.297 カードの数式 |
ユーザー | sugim48 |
提出日時 | 2015-11-06 23:23:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,362 bytes |
コンパイル時間 | 899 ms |
コンパイル使用メモリ | 91,128 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 13:49:13 |
合計ジャッジ時間 | 1,556 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int mi(std::vector<int>, int, int)’: main.cpp:51:19: warning: division by zero [-Wdiv-by-zero] 51 | 3 / 0; | ~~^~~
ソースコード
using namespace std; #include <algorithm> #include <iostream> #include <random> #include <string> #include <fstream> #include <vector> #include <climits> typedef long long ll; ll INF = LLONG_MAX; int ma(vector<int> a, int plus, int minus) { int ans = 0; while (minus--) { ans -= a[0]; a.erase(a.begin()); } while (plus--) { ans += a[0]; a.erase(a.begin()); } ll x = 0; reverse(a.begin(), a.end()); while (!a.empty()) { x = x * 10 + a[0]; a.erase(a.begin()); } return ans + x; } int mi(vector<int> a, int plus, int minus) { if (minus) { plus++; minus--; int ans = 0; while (plus--) { ans += a[0]; a.erase(a.begin()); } while (minus--) { ans -= a[0]; a.erase(a.begin()); } ll x = 0; reverse(a.begin(), a.end()); while (!a.empty()) { x = x * 10 + a[0]; a.erase(a.begin()); } 3 / 0; return ans - x; } else { int n = plus + 1; vector<ll> b(n); for (int i = 0; i < a.size(); i++) b[i % n] = b[i % n] * 10 + a[i]; ll sum = 0; for (int k = 0; k < n; k++) sum += b[k]; return sum; } } int main() { int N; cin >> N; vector<int> a; int plus = 0, minus = 0; while (N--) { string c; cin >> c; if (c == "+") plus++; else if (c == "-") minus++; else a.push_back(c[0] - '0'); } sort(a.begin(), a.end()); cout << ma(a, plus, minus) << ' ' << mi(a, plus, minus) << endl; }