結果
問題 | No.539 インクリメント |
ユーザー | c-yan |
提出日時 | 2020-12-31 00:02:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 479 bytes |
コンパイル時間 | 270 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-10-08 08:01:40 |
合計ジャッジ時間 | 967 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
def f(S): t = str(int(S) + 1) if S[0] != '0': return t return S[:len(S)-len(t)] + t def increment(S): n = len(S) l, r = 0, 0 for i in range(n): if r == 0 and S[n - 1 - i] in '0123456789': r = n - i elif r != 0 and S[n - 1 - i] not in '0123456789': l = n - i if r == 0: return S return S[:l] + f(S[l:r]) + S[r:] T = int(input()) for _ in range(T): S = input() print(increment(S))