結果

問題 No.539 インクリメント
ユーザー maspymaspy
提出日時 2020-02-24 20:08:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,348 KB
最終ジャッジ日時 2024-10-12 10:31:44
合計ジャッジ時間 2,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 100 ms
15,348 KB
testcase_02 AC 101 ms
15,344 KB
testcase_03 AC 177 ms
15,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
T = int(readline())
query = readlines()


# %%
def solve_query(S):
    S = list(S.rstrip().decode())
    S.reverse()
    S.append('$')  # sentinel
    L = len(S)
    find = False
    for i in range(L):
        x = S[i]
        if not x.isdigit():
            if find:
                S.insert(i, '1')
                break
            continue
        find = True
        if x == '9':
            S[i] = '0'
            continue
        S[i] = str(int(x) + 1)
        break
    return ''.join(reversed(S[:-1]))


# %%
for word in query:
    print(solve_query(word))
0