結果

問題 No.539 インクリメント
ユーザー kagasankagasan
提出日時 2019-09-05 14:32:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 917 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 167,032 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-02 09:09:26
合計ジャッジ時間 2,819 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 46 ms
4,384 KB
testcase_02 AC 47 ms
4,376 KB
testcase_03 AC 44 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
void Say(bool say, string a = "Yes", string b = "No"){cout << (say ? a : b) << endl;};

int main(){
    string s;
    for(ll t = 0; getline(cin, s); t++){
        if(t == 0)continue;
        string ans = "";
        ll flg = 0;
        for(ll i = s.size() - 1; i >= 0; i--){
            if(s[i] == '9' && flg < 2){
                ans += '0';
                flg = 1;
            }
            else if('0' <= s[i] && s[i] < '9' && flg < 2){
                ans += s[i] + 1;
                flg = 2;                
            }
            else{
                if(flg == 1){
                    ans += "1";                
                    flg = 2;
                }
                ans += s[i];
            }
        }
        if(flg == 1)ans += "1";
        reverse(ans.begin(), ans.end());
        cout << ans << endl;
    }

    return 0;
}
0