結果

問題 No.18 うーさー暗号
ユーザー ABKZABKZ
提出日時 2021-06-12 16:06:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 192 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 58,052 KB
最終ジャッジ日時 2024-05-09 19:42:29
合計ジャッジ時間 1,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,560 KB
testcase_01 AC 38 ms
55,196 KB
testcase_02 AC 39 ms
56,132 KB
testcase_03 AC 41 ms
58,052 KB
testcase_04 AC 40 ms
54,968 KB
testcase_05 AC 38 ms
56,680 KB
testcase_06 AC 36 ms
55,680 KB
testcase_07 AC 36 ms
56,000 KB
testcase_08 AC 38 ms
56,620 KB
testcase_09 AC 36 ms
56,944 KB
testcase_10 AC 35 ms
55,576 KB
testcase_11 AC 36 ms
56,088 KB
testcase_12 AC 37 ms
55,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

S = input()
ans = reduce(lambda a, b: a + b,
             [chr(ord("Z") - (ord("Z") - ord(c) + i) % 26)
                 for i, c in enumerate(S, 1)])

print(ans)
0