結果

問題 No.539 インクリメント
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-29 14:20:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 201,240 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-17 16:50:21
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 38 ms
6,816 KB
testcase_02 AC 38 ms
6,820 KB
testcase_03 AC 40 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    int t;
    cin>>t;
    cin.ignore();
    while (t--) {
        string s;
        getline(cin,s);
        int i=s.size()-1;
        while (0<=i&&!isdigit(s[i]))
            i--;
        int carry=0;
        while (0<=i&&isdigit(s[i])) {
            if (s[i]=='9') {
                s[i]='0';
                carry=1;
                i--;
            } else {
                carry=0;
                s[i]++;
                break;
            }
        }
        if (carry)
            s.insert(i+1,"1");
        cout<<s<<endl;
    }
    return 0;
}
0