結果
問題 | No.539 インクリメント |
ユーザー | lloyz |
提出日時 | 2022-10-03 00:04:40 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 731 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 130,284 KB |
最終ジャッジ日時 | 2024-06-07 17:02:36 |
合計ジャッジ時間 | 2,136 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
53,352 KB |
testcase_01 | MLE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
for _ in range(int(input())): S = list(input()) n = len(S) L = [] temp = '' for i in range(n): if i == 0: prev = S[i].isdigit() temp += S[i] else: if prev == S[i].isdigit(): temp += S[i] else: L.append(temp) temp = S[i] prev = S[i].isdigit() if i == n - 1: L.append(temp) m = len(L) for i in range(m - 1, -1, -1): if L[i].isdigit(): digit = len(L[i]) num = int(L[i]) num += 1 L[i] = str(num) while len(L[i]) < digit: L[i] = '0' + L[i] break print(''.join(L))