結果

問題 No.2034 Anti Lexicography
ユーザー kept1994kept1994
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,232 KB
testcase_01 AC 52 ms
63,232 KB
testcase_02 AC 52 ms
63,360 KB
testcase_03 AC 53 ms
63,232 KB
testcase_04 AC 53 ms
63,488 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 54 ms
65,920 KB
testcase_14 AC 55 ms
65,920 KB
testcase_15 AC 54 ms
69,760 KB
testcase_16 AC 63 ms
76,544 KB
testcase_17 AC 62 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

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