結果

問題 No.539 インクリメント
ユーザー H3PO4H3PO4
提出日時 2020-09-16 21:32:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 232 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-22 03:37:47
合計ジャッジ時間 1,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import re

T = int(input())
regex = re.compile(r'([0-9]+)([^0-9]*$)')


def func(m):
    num_str = m.group(1)
    return str(int(num_str) + 1).zfill(len(num_str)) + m.group(2)


for _ in range(T):
    print(regex.sub(func, input()))
0