結果

問題 No.1455 拡張ROTN
ユーザー nasubi24nasubi24
提出日時 2021-03-31 21:20:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 565 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 70,424 KB
最終ジャッジ日時 2024-05-09 04:46:26
合計ジャッジ時間 2,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,200 KB
testcase_01 AC 45 ms
60,920 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 45 ms
60,716 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 45 ms
61,676 KB
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
n=int(input())
cnt1=["CpCzNkSuTbEoA"]
for i in range(150):
    ans=""
    s1=cnt1[-1]
    for j in range(len(s1)):
        a=ord(s1[j])
        if a<92:
            ans+=chr(65+(a-65+1)%26)
        else:
            ans+=chr(97+(a-97+1)%26)
    cnt1.append(ans)
ans=""
m=n%26
k=n%10
for i in range(len(s)):
    a=ord(s[i])
    if a<65:
        if int(s[i])+n>9:
            ans+=cnt1[int(s[i])+n-10]
        else:
            ans+=str((int(s[i])+k)%10)
    elif a<92:
        ans+=chr(65+(a-65+m)%26)
    else:
        ans+=chr(97+(a-97+m)%26)
print(ans)
0