結果
問題 | No.539 インクリメント |
ユーザー | mitsuo |
提出日時 | 2018-08-22 10:40:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 14,976 KB |
最終ジャッジ日時 | 2024-06-06 02:05:21 |
合計ジャッジ時間 | 1,783 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,624 KB |
testcase_01 | AC | 118 ms
14,976 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
import re def partsolve(l): match_list = re.findall("[0-9]+", l) if match_list: last = match_list[-1] size = len(last) replace = ("{:0" + str(size) + "}").format(int(last) + 1) data = re.sub(last[::-1], replace[::-1], l[::-1], count=1) return data[::-1] else: return l def solve(N, lines): ret = [] for l in lines: ret.append(partsolve(l)) return ret if __name__ == "__main__": N = int(input()) [print(s) for s in solve(N, [input() for _ in range(N)])]