結果

問題 No.2034 Anti Lexicography
ユーザー kept1994
提出日時 2022-11-18 01:57:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 287 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 263,040 KB
最終ジャッジ日時 2024-09-19 12:01:57
合計ジャッジ時間 23,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7 TLE * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import string

def main():
    l = string.ascii_lowercase
    invl = (string.ascii_lowercase)[::-1]
    N = int(input())
    S = input()
    ans = ""
    for ss in S:
        ans += invl[l.index(ss)]
    print(ans)
    return

if __name__ == '__main__':
    main()
0