結果
問題 | No.193 筒の数式 |
ユーザー | hanorver |
提出日時 | 2015-10-29 22:04:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 907 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 70,936 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 04:39:31 |
合計ジャッジ時間 | 1,405 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 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,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include<iostream> #include<string> #include<queue> #include<algorithm> int solve(std::string s) { std::queue<std::string> q; int num = 0; for (int i = 0; i < s.length(); i++) { if (!isdigit(s[i])) { if (i == 0 || i == s.length() - 1 || !isdigit(s[i + 1])) return 0; q.push(std::to_string(num)); q.push(std::to_string(s[i])); num = 0; } else num = num * 10 + (s[i] - '0'); } q.push(std::to_string(num)); num = std::stoi(q.front());q.pop(); while (q.size()) { std::string d = q.front();q.pop(); if (d == "43") num += std::stoi(q.front()); else num -= std::stoi(q.front()); q.pop(); } return num; } int main() { std::string str; std::cin >> str; int max = 1e-10; for (int i = 0; i < str.length(); i++) { max = std::max(solve(str), max); char s = str.back(); str.erase(str.end() - 1); str.insert(str.begin(), s); } std::cout << max << std::endl; return 0; }