結果
問題 | No.539 インクリメント |
ユーザー | koba-e964 |
提出日時 | 2017-07-01 00:23:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,444 bytes |
コンパイル時間 | 755 ms |
コンパイル使用メモリ | 91,016 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 22:17:47 |
合計ジャッジ時間 | 1,483 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 43 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef vector<ll> VL; typedef pair<int, int> PI; string increment(string s) { int carry = 1; int n = s.length(); for (int i = n - 1; i >= 0; --i) { s[i] += carry; carry = 0; if (s[i] > '9') { s[i] = '0'; carry = 1; } } if (carry) { return '1' + s; } return s; } string calc(const string &s) { int start = -1; int end = -1; int n = s.length(); bool prev = false; REP(i, 0, n) { if (isdigit(s[i])) { if (not prev) { start = i; } prev = false; end = i + 1; } } if (start < 0) { return s; } // increment [start, end) return s.substr(0, start) + increment(s.substr(start, end - start)) + s.substr(end); } int main(void){ int t; string first; getline(cin, first); stringstream ss(first); ss >> t; REP(i, 0, t) { string s; getline(cin, s); cout << calc(s) << endl; } }