結果

問題 No.1455 拡張ROTN
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-31 22:26:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 61,312 KB
最終ジャッジ日時 2024-05-09 08:35:59
合計ジャッジ時間 1,843 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,840 KB
testcase_01 AC 30 ms
52,352 KB
testcase_02 AC 36 ms
61,056 KB
testcase_03 AC 31 ms
52,864 KB
testcase_04 AC 38 ms
61,312 KB
testcase_05 AC 30 ms
52,096 KB
testcase_06 AC 35 ms
60,032 KB
testcase_07 AC 36 ms
52,736 KB
testcase_08 AC 35 ms
52,992 KB
testcase_09 AC 34 ms
52,736 KB
testcase_10 AC 32 ms
52,224 KB
testcase_11 AC 33 ms
52,224 KB
testcase_12 AC 30 ms
52,480 KB
testcase_13 AC 31 ms
52,352 KB
testcase_14 AC 30 ms
52,096 KB
testcase_15 AC 30 ms
51,968 KB
testcase_16 AC 29 ms
51,968 KB
testcase_17 AC 30 ms
52,352 KB
testcase_18 AC 30 ms
52,480 KB
testcase_19 AC 30 ms
52,220 KB
testcase_20 AC 30 ms
52,352 KB
testcase_21 AC 30 ms
52,608 KB
testcase_22 AC 30 ms
51,840 KB
testcase_23 AC 29 ms
52,224 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