結果

問題 No.1455 拡張ROTN
ユーザー あかりきあかりき
提出日時 2021-04-13 16:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2024-06-29 21:57:36
合計ジャッジ時間 2,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 53 ms
61,696 KB
testcase_03 AC 47 ms
60,416 KB
testcase_04 AC 48 ms
61,696 KB
testcase_05 AC 43 ms
59,392 KB
testcase_06 AC 47 ms
61,440 KB
testcase_07 AC 44 ms
60,416 KB
testcase_08 AC 46 ms
60,416 KB
testcase_09 AC 43 ms
59,392 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 42 ms
58,752 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 42 ms
59,008 KB
testcase_15 AC 38 ms
52,352 KB
testcase_16 AC 37 ms
52,400 KB
testcase_17 AC 36 ms
52,608 KB
testcase_18 AC 43 ms
59,008 KB
testcase_19 AC 43 ms
59,392 KB
testcase_20 AC 39 ms
52,480 KB
testcase_21 AC 37 ms
52,480 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 42 ms
58,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(input())
n=int(input())

c=[chr(i) for i in range(97, 97+26)]
C=[chr(i) for i in range(65, 65+26)]
for i in range(min(n,10)):
  for j in range(len(s)):
    if s[j] in c:
      s[j]=c[(c.index(s[j])+1)%26]
    elif s[j] in C:
      s[j]=C[(C.index(s[j])+1)%26]
    elif s[j]=='9':
      s[j]='CpCzNkSuTbEoA'
    else:
      s[j]=str(int(s[j])+1)
  s=list(''.join(s))

if n<=10:
  print(''.join(s))
  exit()

n-=10
n%=26
for i in range(len(s)):
  if s[i] in c:
    s[i]=c[(c.index(s[i])+n)%26]
  elif s[i] in C:
    s[i]=C[(C.index(s[i])+n)%26]
print(''.join(s))
0