結果

問題 No.1455 拡張ROTN
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-09 11:29:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 63,980 KB
最終ジャッジ日時 2024-06-09 10:43:58
合計ジャッジ時間 2,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,964 KB
testcase_01 AC 41 ms
54,004 KB
testcase_02 AC 53 ms
62,964 KB
testcase_03 AC 51 ms
61,980 KB
testcase_04 AC 50 ms
61,632 KB
testcase_05 AC 48 ms
60,472 KB
testcase_06 AC 51 ms
63,980 KB
testcase_07 AC 52 ms
63,828 KB
testcase_08 AC 51 ms
62,612 KB
testcase_09 AC 48 ms
61,172 KB
testcase_10 AC 47 ms
59,568 KB
testcase_11 AC 45 ms
59,924 KB
testcase_12 AC 45 ms
59,368 KB
testcase_13 AC 38 ms
52,060 KB
testcase_14 AC 50 ms
62,400 KB
testcase_15 AC 43 ms
58,952 KB
testcase_16 AC 43 ms
58,428 KB
testcase_17 AC 38 ms
53,032 KB
testcase_18 AC 43 ms
60,232 KB
testcase_19 AC 43 ms
60,696 KB
testcase_20 AC 45 ms
60,704 KB
testcase_21 AC 44 ms
60,944 KB
testcase_22 AC 38 ms
52,428 KB
testcase_23 AC 48 ms
60,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def henkan(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(henkan, S))
print(S)
0