結果

問題 No.539 インクリメント
ユーザー Chihaya_chanChihaya_chan
提出日時 2020-06-14 19:33:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 444 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-27 17:46:38
合計ジャッジ時間 1,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:6: SyntaxWarning: invalid escape sequence '\d'
  D = re.split('\d+', s)

ソースコード

diff #

# yukicoder
import re
T = int(input())
for _ in range(T):
    s = input()
    D = re.split('\d+', s)
    E = re.split("[^][0-9]+", s)
    F = []
    while E and E[-1] == "":
        E.pop()
    if E:
        E[-1] = str(int(E[-1])+1).zfill(len(E[-1]))
    F = []
    for some in E:
        if some != "":
            F.append(some)
    ans = ""
    for _ in range(len(F)):
        ans += D[_]
        ans += F[_]
    ans += D[-1]
    print(ans)
0