結果

問題 No.539 インクリメント
ユーザー mkawa2mkawa2
提出日時 2020-01-04 11:47:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,212 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,792 KB
最終ジャッジ日時 2024-05-02 07:58:46
合計ジャッジ時間 3,529 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 453 ms
44,656 KB
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
# from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

def main():
    def plus1(s):
        n=len(s)
        num=str(int(s)+1).zfill(n)
        return num

    t=II()
    for _ in range(t):
        s=input()
        n=len(s)
        for r in range(n,0,-1):
            if s[r-1].isdigit():break
        else:
            print(s)
            continue
        for l in range(r,0,-1):
            if not s[l-1].isdigit():break
        print(s[:l]+plus1(s[l:r])+s[r:])

main()
0