結果

問題 No.1455 拡張ROTN
ユーザー KudeKude
提出日時 2021-03-31 21:24:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-12-15 14:58:03
合計ジャッジ時間 2,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

def succ(c):
    if 'a' <= c < 'z' or 'A' <= c < 'Z' or '0' <= c < '9':
        return chr(ord(c) + 1)
    if c == 'z':
        return 'a'
    if c == 'Z':
        return 'A'
    if c == '9':
        return 'CpCzNkSuTbEoA'
    assert False

s = input()
n = int(input())
if n >= 36:
    n = 10 + (n - 10) % 26
for _ in range(n):
    s = ''.join(map(succ, s))
print(s)
0