結果
| 問題 | No.539 インクリメント |
| コンテスト | |
| ユーザー |
AEn
|
| 提出日時 | 2022-06-14 18:32:57 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 883 ms / 2,000 ms |
| コード長 | 935 bytes |
| 記録 | |
| コンパイル時間 | 681 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 19,928 KB |
| 最終ジャッジ日時 | 2026-04-19 00:46:37 |
| 合計ジャッジ時間 | 4,264 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 3 |
ソースコード
def main():
n = int(input())
num = set([str(i) for i in range(10)])
for i in range(n):
S = input()
ans = []
f = False
s = False
ok = False
for j in reversed(range(len(S))):
if f == False and S[j] in num:
a, b = (int(S[j])+1)//10, (int(S[j])+1)%10
ans.append(str(b))
s = True
f = True
elif s == True and S[j] in num:
a, b = (int(S[j])+a)//10, (int(S[j])+a)%10
ans.append(str(b))
elif s == True:
if a == 1:
ans.append('1')
ok = True
s = False
ans.append(S[j])
else:
ans.append(S[j])
if f == True and ok == False and a == 1:
ans.append('1')
print(''.join(ans)[::-1])
if __name__ == '__main__':
main()
AEn