結果

問題 No.539 インクリメント
ユーザー mkawa2mkawa2
提出日時 2020-01-04 12:08:57
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 598 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-05-02 08:00:12
合計ジャッジ時間 1,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys

def II(): return int(sys.stdin.readline())

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

    t=II()
    for _ in range(t):
        s=sys.stdin.readline()[:-1]
        n=len(s)
        for i,c in enumerate(s[::-1]):
            if c.isdigit():
                r=n-i
                break
        else:
            print(s)
            continue
        for j,c in enumerate(s[r-1::-1]):
            if not c.isdigit():
                l=n-i-j
                break
        else:l=0
        print(s[:l]+plus1(s[l:r])+s[r:])

main()
0