結果

問題 No.1455 拡張ROTN
ユーザー roarisroaris
提出日時 2021-03-31 22:12:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-05-09 08:12:19
合計ジャッジ時間 2,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,504 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 61 ms
69,376 KB
testcase_03 AC 59 ms
67,968 KB
testcase_04 AC 59 ms
69,504 KB
testcase_05 AC 48 ms
62,208 KB
testcase_06 AC 64 ms
67,968 KB
testcase_07 AC 60 ms
67,584 KB
testcase_08 AC 59 ms
67,328 KB
testcase_09 AC 54 ms
65,920 KB
testcase_10 AC 42 ms
59,648 KB
testcase_11 AC 43 ms
61,056 KB
testcase_12 AC 44 ms
61,696 KB
testcase_13 AC 36 ms
53,760 KB
testcase_14 AC 46 ms
62,720 KB
testcase_15 AC 37 ms
54,272 KB
testcase_16 AC 43 ms
61,056 KB
testcase_17 AC 52 ms
64,256 KB
testcase_18 AC 55 ms
65,408 KB
testcase_19 AC 56 ms
65,664 KB
testcase_20 AC 54 ms
65,536 KB
testcase_21 AC 46 ms
62,080 KB
testcase_22 AC 37 ms
53,376 KB
testcase_23 AC 46 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def forward(s):
    if '0'<=s<'9':
        return str((int(s)+1))
    elif s=='9':
        return 'CpCzNkSuTbEoA'
    elif 'a'<=s<='z':
        return chr((ord(s)-ord('a')+1)%26+ord('a'))
    else:
        return chr((ord(s)-ord('A')+1)%26+ord('A'))

S = input()[:-1]
N = int(input())

for _ in range(min(15, N)):
    T = []
    
    for i in range(len(S)):
        T.append(forward(S[i]))
    
    S = ''.join(T)

if N>15:
    S = list(S)
    
    for i in range(len(S)):
        for j in range((N-15)%26):
            S[i] = forward(S[i])
            
print(''.join(S))
0