結果
問題 | No.851 テストケース |
ユーザー | leaf_1415 |
提出日時 | 2019-07-26 21:31:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 845 bytes |
コンパイル時間 | 738 ms |
コンパイル使用メモリ | 72,400 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 06:41:16 |
合計ジャッジ時間 | 1,526 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stdlib.h> #define llint long long using namespace std; int n; vector<string> vec; vector<llint> vec2; llint get(string s) { llint ret = 0, mul = 1; reverse(s.begin(), s.end()); for(int i = 0; i < s.size(); i++) ret += s[i]-'0', mul *= 10; return ret; } int main(void) { string s; while(getline(cin, s)){ vec.push_back(s); } if(vec.size() == 2){ cout << "\"assert\"" << endl; return 0; } vec2.push_back(get(vec[1].c_str()) + get(vec[2].c_str())); vec2.push_back(get(vec[1].c_str()) + get(vec[2].c_str())); vec2.push_back(get(vec[2].c_str()) + get(vec[3].c_str())); sort(vec2.begin(), vec2.end()); vec2.erase(unique(vec2.begin(), vec2.end()), vec2.end()); reverse(vec2.begin(), vec2.end()); cout << vec2[1] << endl; return 0; }