結果
問題 | No.539 インクリメント |
ユーザー | teketeke5000 |
提出日時 | 2017-10-24 21:07:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 1,095 bytes |
コンパイル時間 | 1,416 ms |
コンパイル使用メモリ | 161,460 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 17:49:42 |
合計ジャッジ時間 | 2,155 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 49 ms
6,816 KB |
testcase_02 | AC | 42 ms
6,820 KB |
testcase_03 | AC | 46 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(void) { int T; int level; cin >> T; string strs[T]; cin.ignore(); vector<int> up(T, -1); for (int i=0; i<T; i++) { string str; getline(cin, str); up[i] = -1; for (int j=str.size()-1; j>=0; j--) { if (!isdigit(str[j])) { if (up[i] != -1) break; else continue; } int num = (int)str[j] - '0'; if (num == 9) { str[j] = '0'; up[i] = j; continue; } if (0<= num && num < 9) { str[j] = (char)num + '0' + 1; up[i] = -1; break; } } strs[i] = str; } for (int i=0; i<T; i++) { if (up[i] == -1) { cout << strs[i]; } else { for (int j=0; j<strs[i].size(); j++) { if (up[i] == j) cout << 10; else cout << strs[i][j]; } } cout << endl; } return 0; }