結果
問題 | No.539 インクリメント |
ユーザー | conankun |
提出日時 | 2017-10-19 23:51:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 917 bytes |
コンパイル時間 | 458 ms |
コンパイル使用メモリ | 56,720 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-05-01 06:03:54 |
合計ジャッジ時間 | 1,090 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 37 ms
6,940 KB |
testcase_02 | AC | 37 ms
6,940 KB |
testcase_03 | AC | 38 ms
6,940 KB |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { int T; cin >> T; cin.ignore(); string strs[20]; for (int i = 0; i < T; i++) { string str; getline(cin, str); int strLen = str.length(); bool preNine = false; for (int j = strLen - 1; j >= 0; j--) { if (isdigit(str[j])) { int num = str[j] - '0'; preNine = num == 9; str[j] = '0' + (preNine ? 0 : ++num); if (!preNine) break; } else if (preNine) { str.insert(j + 1, "1"); preNine = false; break; } } if (preNine) str.insert(0, "1"); strs[i] = str; } for (int i = 0; i < T; i++) { cout << strs[i] << "\n"; } int a; cin >> a; }