結果

問題 No.2034 Anti Lexicography
ユーザー kept1994kept1994
提出日時 2022-11-18 01:57:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 287 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 81,656 KB
実行使用メモリ 265,940 KB
最終ジャッジ日時 2023-10-19 15:53:31
合計ジャッジ時間 7,677 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,052 KB
testcase_01 AC 56 ms
63,704 KB
testcase_02 AC 55 ms
63,704 KB
testcase_03 AC 55 ms
63,704 KB
testcase_04 AC 56 ms
63,704 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

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