結果
問題 | No.539 インクリメント |
ユーザー | kyo1 |
提出日時 | 2020-12-01 04:29:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 395 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 18,080 KB |
最終ジャッジ日時 | 2024-09-13 02:47:36 |
合計ジャッジ時間 | 4,702 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,824 KB |
testcase_01 | AC | 50 ms
11,008 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
ソースコード
for _ in range(int(input())): S = input()[::-1] for i, s in enumerate(S): if s.isdigit(): x = 0 p = i while p < len(S) and S[p].isdigit(): x += int(S[p]) * pow(10, p - i) p += 1 x += 1 S = S[:i] + ("0" * (p - i - len(str(x))) + str(x))[::-1] + S[p:] break print(S[::-1])