結果

問題 No.1455 拡張ROTN
ユーザー hir355hir355
提出日時 2021-03-31 21:17:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,025 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 70,960 KB
最終ジャッジ日時 2024-12-15 14:09:51
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,452 KB
testcase_01 AC 34 ms
53,232 KB
testcase_02 AC 47 ms
70,960 KB
testcase_03 AC 47 ms
63,680 KB
testcase_04 AC 47 ms
70,936 KB
testcase_05 AC 40 ms
60,304 KB
testcase_06 AC 41 ms
64,392 KB
testcase_07 AC 40 ms
62,528 KB
testcase_08 AC 40 ms
61,728 KB
testcase_09 AC 38 ms
59,656 KB
testcase_10 AC 36 ms
53,748 KB
testcase_11 AC 35 ms
54,076 KB
testcase_12 AC 37 ms
58,588 KB
testcase_13 AC 33 ms
52,364 KB
testcase_14 AC 40 ms
60,500 KB
testcase_15 AC 35 ms
53,128 KB
testcase_16 AC 34 ms
52,992 KB
testcase_17 AC 35 ms
53,304 KB
testcase_18 AC 38 ms
59,608 KB
testcase_19 AC 37 ms
59,784 KB
testcase_20 AC 36 ms
53,784 KB
testcase_21 AC 34 ms
53,384 KB
testcase_22 AC 35 ms
53,676 KB
testcase_23 AC 38 ms
58,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = int(input())
if n < 100:
    for i in range(n):
        t = ''
        for c in s:
            if c == 'z':
                t += 'a'
            elif c == 'Z':
                t += 'A'
            elif c == '9':
                t += 'CpCzNkSuTbEoA'
            else:
                t += chr(ord(c) + 1)
        s = t[:]
else:
    for i in range(10):
        t = ''
        for c in s:
            if c == 'z':
                t += 'a'
            elif c == 'Z':
                t += 'A'
            elif c == '9':
                t += 'CpCzNkSuTbEoA'
            else:
                t += chr(ord(c) + 1)
        s = t[:]
    n -= 10
    t = ''
    for c in s:
        if ord(c) <= ord('Z'):
            x = ord(c) + n % 26
            if ord('Z') < x:
                t += chr(x - 26)
            else:
                t += chr(x)
        else:
            x = ord(c) + n % 26
            if ord('z') < x:
                t += chr(x - 26)
            else:
                t += chr(x)
    s = t[:]
print(s)
0