結果
問題 | No.539 インクリメント |
ユーザー | んんん |
提出日時 | 2022-12-23 11:16:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 999 bytes |
コンパイル時間 | 1,738 ms |
コンパイル使用メモリ | 204,560 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 03:58:49 |
合計ジャッジ時間 | 2,983 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 34 ms
6,820 KB |
testcase_02 | AC | 40 ms
6,816 KB |
testcase_03 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; string S; void solve() { getline(cin, S); bool f = false; for (auto c : S) f |= isdigit(c); if (!f) { cout << S << endl; return; } bool kr = true; for (int i = S.size()-1; i >= 0; i--) { char c = S[i]; if (isdigit(c)) { while (1) { char &n = S[i]; if (isdigit(n) && kr) n++; if (n == 10 + '0') { n = '0'; } else if (isdigit(n)) { kr = false; } i--; if (i == -1 || !isdigit(n)) { if (kr) { S = S.substr(0, i+2) + '1' + S.substr(i+2); } break; }; } break; } } cout << S << endl; } int main() { int T; cin >> T; getline(cin, S); while (T--) { solve(); } }