結果

問題 No.1455 拡張ROTN
ユーザー 萩3萩3
提出日時 2021-05-01 09:34:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,064 KB
最終ジャッジ日時 2024-07-19 15:52:16
合計ジャッジ時間 2,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
53,376 KB
testcase_01 AC 55 ms
59,520 KB
testcase_02 AC 68 ms
71,040 KB
testcase_03 AC 58 ms
65,920 KB
testcase_04 AC 66 ms
69,376 KB
testcase_05 AC 55 ms
62,848 KB
testcase_06 AC 68 ms
72,064 KB
testcase_07 AC 64 ms
68,736 KB
testcase_08 AC 61 ms
66,304 KB
testcase_09 AC 56 ms
63,360 KB
testcase_10 AC 53 ms
60,160 KB
testcase_11 AC 52 ms
60,288 KB
testcase_12 AC 52 ms
60,416 KB
testcase_13 AC 45 ms
53,376 KB
testcase_14 AC 54 ms
60,928 KB
testcase_15 AC 51 ms
59,136 KB
testcase_16 AC 51 ms
58,880 KB
testcase_17 AC 52 ms
58,880 KB
testcase_18 AC 55 ms
61,824 KB
testcase_19 AC 52 ms
60,416 KB
testcase_20 AC 53 ms
61,440 KB
testcase_21 AC 52 ms
60,800 KB
testcase_22 AC 47 ms
53,632 KB
testcase_23 AC 52 ms
60,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
def resolve():
    s = input()
    n = int(input())
    trans = [None]*256
    trans[ord('9')] = [ord(c) for c in 'CpCzNkSuTbEoA']
    trans[ord('z')] = [ord('a')]
    trans[ord('Z')] = [ord('A')]
    for i in range(9):
        trans[ord(str(i))] = [ord(str(i+1))]
    
    ord_a = ord('a')
    ord_A = ord('A')
    for i in range(25):
        trans[ord_a+i] = [ord_a+i+1]
        trans[ord_A+i] = [ord_A+i+1]

    deq = collections.deque([ord(c) for c in s])
    loop = n if n<=9 else 10 + (n-10)%26
    for _ in range(loop):
        for _ in range(len(deq)):
            deq.extend(trans[deq.popleft()])

    print(*[chr(code) for code in deq],sep='')
resolve()
0