結果
問題 | No.539 インクリメント |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-29 14:18:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 1,681 ms |
コンパイル使用メモリ | 201,500 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-17 16:50:18 |
合計ジャッジ時間 | 2,354 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int t; cin>>t; 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; }