結果
問題 | No.539 インクリメント |
ユーザー | rlangevin |
提出日時 | 2023-02-22 12:29:48 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 817 bytes |
コンパイル時間 | 700 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 100,064 KB |
最終ジャッジ日時 | 2024-07-22 14:38:38 |
合計ジャッジ時間 | 1,797 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,484 KB |
testcase_01 | AC | 127 ms
100,064 KB |
testcase_02 | AC | 124 ms
98,924 KB |
testcase_03 | RE | - |
ソースコード
T = int(input()) S = set(range(10)) S = set(map(str, S)) for _ in range(T): s = list(input()) flag = 0 pre, num = [], [] while s: if flag == 0: if s[-1] not in S: pre.append(s.pop()) elif s[-1] == "9": num.append(s.pop()) flag = 1 else: num.append(s.pop()) flag = 2 elif flag == 1: if s[-1] not in S: break elif s[-1] == "9": num.append(s.pop()) else: num.append(s.pop()) flag = 2 else: break pre.reverse() num.reverse() if num: num = int("".join(num)) + 1 s.extend(list(str(num))) s.extend(pre) print("".join(s))