結果
問題 | No.539 インクリメント |
ユーザー | titia |
提出日時 | 2024-02-06 08:36:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,835 ms / 2,000 ms |
コード長 | 616 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 14,720 KB |
最終ジャッジ日時 | 2024-09-28 11:54:40 |
合計ジャッジ時間 | 4,206 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,624 KB |
testcase_01 | AC | 32 ms
11,008 KB |
testcase_02 | AC | 1,835 ms
14,720 KB |
testcase_03 | AC | 1,534 ms
14,560 KB |
ソースコード
import sys sys.set_int_max_str_digits(0) T=int(input()) for tests in range(T): S=input() A=[] flag=0 last=-1 B="" f=-1 for i in range(len(S)-1,-1,-1): if flag==0 and 48<=ord(S[i])<=57: flag=1 f=i if flag==0: A.append(S[i]) if flag==1: if 48<=ord(S[i])<=57: pass else: last=i break if last>=0: B=S[:last+1] C=S[last+1:f+1] if C: X=str(int(C)+1).zfill(len(C)) else: X="" print(B+X+"".join(A[::-1]))