結果
問題 | No.539 インクリメント |
ユーザー | dnish |
提出日時 | 2017-07-01 00:36:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 931 bytes |
コンパイル時間 | 1,393 ms |
コンパイル使用メモリ | 169,132 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 22:21:46 |
合計ジャッジ時間 | 2,150 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 34 ms
5,248 KB |
testcase_02 | AC | 34 ms
5,248 KB |
testcase_03 | AC | 36 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i,n,N) for(int i=(n);i<(int) N;i++) #define RREP(i,n,N) for(int i=N-1;i>=(int) n;i--) #define p(s) cout<<(s)<<endl #define DEBUG(x,y) cout<<#x<<": "<<x<<" , "<<#y<<": "<<y<<endl; #define CK(n,a,b) ((a)<=(n)&&(n)<=(b)) #define F first #define S second typedef long long ll; using namespace std; const ll inf=1e5; bool flag,add; int main(){ int t; cin>>t; string s; cin.ignore(); REP(i,0,t){ flag=false; add=false; getline(cin,s); RREP(i,0,s.size()){ if(isdigit(s[i])&&!flag){ flag=true; s[i]=(char)(((s[i]-'0'+1)%10)+'0'); if(s[i]=='0'){ add=true; } }else if(!flag) continue; else if(isdigit(s[i])&&add){ s[i]=(char)(((s[i]-'0'+1)%10)+'0'); if(s[i]=='0'){ add=true; }else add= false; }else if(add){ s.insert(s.begin()+i+1,'1'); add=false; break; }else{ break; } } if(add) s='1'+s; p(s); } return 0; }