結果
| 問題 | No.18 うーさー暗号 |
| コンテスト | |
| ユーザー |
あかりき
|
| 提出日時 | 2021-02-08 06:23:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 5,000 ms |
| コード長 | 149 bytes |
| コンパイル時間 | 331 ms |
| コンパイル使用メモリ | 82,180 KB |
| 実行使用メモリ | 52,480 KB |
| 最終ジャッジ日時 | 2024-07-05 01:20:44 |
| 合計ジャッジ時間 | 1,285 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
s=list(input())
c=[chr(i) for i in range(65, 65+26)]
ans=[]
for i in range(len(s)):
x=c.index(s[i])
ans.append(c[(x-i-1)%26])
print(''.join(ans))
あかりき