結果

問題 No.1455 拡張ROTN
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-31 22:26:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-12-15 19:53:40
合計ジャッジ時間 1,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,168 KB
testcase_01 AC 33 ms
52,368 KB
testcase_02 AC 41 ms
61,568 KB
testcase_03 AC 32 ms
53,012 KB
testcase_04 AC 37 ms
61,068 KB
testcase_05 AC 31 ms
52,504 KB
testcase_06 AC 35 ms
60,488 KB
testcase_07 AC 31 ms
53,348 KB
testcase_08 AC 31 ms
53,692 KB
testcase_09 AC 31 ms
52,412 KB
testcase_10 AC 31 ms
52,964 KB
testcase_11 AC 31 ms
52,700 KB
testcase_12 AC 31 ms
53,488 KB
testcase_13 AC 31 ms
51,876 KB
testcase_14 AC 32 ms
52,268 KB
testcase_15 AC 31 ms
52,572 KB
testcase_16 AC 31 ms
52,216 KB
testcase_17 AC 32 ms
52,752 KB
testcase_18 AC 31 ms
52,760 KB
testcase_19 AC 32 ms
52,464 KB
testcase_20 AC 31 ms
52,724 KB
testcase_21 AC 30 ms
53,704 KB
testcase_22 AC 32 ms
52,300 KB
testcase_23 AC 32 ms
53,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = int(input())
C = "CpCzNkSuTbEoA"
ans = ""
"123456789"
a = [chr(i+ord("a")) for i in range(26)]
A = [chr(i+ord("A")) for i in range(26)]

for s in S:
    if s in a:
        ind = a.index(s)
        ans += a[(ind+n)%26]
    elif s in A:
        ind = A.index(s)
        ans += A[(ind+n)%26]
    else:
        s = int(s)
        if s+n <= 9:
            ans += str(s+n)
        else:
            nn = n+s-10
            for c in C:
                if c in a:
                    ind = a.index(c)
                    ans += a[(ind+nn)%26]
                if c in A:
                    ind = A.index(c)
                    ans += A[(ind+nn)%26]
print(ans)
0