結果
問題 | No.539 インクリメント |
ユーザー | kokoa1046 |
提出日時 | 2017-10-11 15:43:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 236,952 KB |
最終ジャッジ日時 | 2024-11-17 09:41:01 |
合計ジャッジ時間 | 3,400 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | MLE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
n= int(input()) li=[input() for _ in range(n)] for i in li: flag=False j=0 while True: if j>=len(i): print(i) break if not i[j].isdigit(): j+=1 continue else: k=j while k<len(i) and i[k].isdigit(): k+=1 numlen=len(i[j:k]) num=int(i[j:k])+1 numincedstr=str(num).zfill(numlen) i=i[:j]+numincedstr+i[k:] j+=len(numincedstr)