結果

問題 No.1455 拡張ROTN
ユーザー tobusakanatobusakana
提出日時 2022-10-28 00:51:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 52,864 KB
最終ジャッジ日時 2024-07-05 08:52:17
合計ジャッジ時間 2,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
52,236 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 37 ms
51,880 KB
testcase_10 AC 37 ms
52,864 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 36 ms
52,480 KB
testcase_16 AC 38 ms
52,736 KB
testcase_17 AC 38 ms
52,736 KB
testcase_18 AC 38 ms
52,268 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 38 ms
52,096 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 AC 37 ms
52,864 KB
testcase_23 AC 35 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

S = readline().rstrip()
N = int(readline())

# 既に処理したことがあるものはdicに登録しておく
dic = {}

ans = []
def rotate_char(c, M):
  rot = M % 26
  if c.upper() == c: # 大文字の場合
    return chr((ord(c) - ord('A') + rot) % 26 + ord('A'))
  else:
    return chr((ord(c) - ord('a') + rot) % 26 + ord('a'))
  
# CpCzNkSuTbEoAを0~25回rotateすると何になるかを求めておく
bef = [""] * 26
T = "CpCzNkSuTbEoA"
for i in range(26):
  temp = []
  for t in T:
    temp.append(rotate_char(t, i))
  bef[i] = "".join(temp)
  
for s in S:
  if s in dic:
    ans.append(dic[s])
    continue
  if s.isdigit():
    # CpCzNkSuTbEoAになるまでに何回必要か
    to_T = 10 - int(s)
    if to_T > N: # CpCzNkSuTbEoAになれない
      ans.append(str(int(s) + N))
      continue
    rest = N - to_T # 残りの試行回数
    ans.append(bef[rest % 26])
  else:
    target = rotate_char(s, N)
    dic[s] = target
    ans.append(target)
    
print("".join(ans))  
  
  
  
  
0