結果

問題 No.2034 Anti Lexicography
ユーザー kept1994kept1994
提出日時 2022-11-18 02:01:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 104,088 KB
最終ジャッジ日時 2024-09-19 12:05:36
合計ジャッジ時間 2,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,360 KB
testcase_01 AC 50 ms
63,744 KB
testcase_02 AC 49 ms
63,616 KB
testcase_03 AC 49 ms
63,744 KB
testcase_04 AC 52 ms
63,488 KB
testcase_05 AC 111 ms
103,124 KB
testcase_06 AC 115 ms
103,596 KB
testcase_07 AC 113 ms
103,300 KB
testcase_08 AC 112 ms
103,720 KB
testcase_09 AC 111 ms
103,452 KB
testcase_10 AC 118 ms
103,840 KB
testcase_11 AC 117 ms
104,088 KB
testcase_12 AC 115 ms
103,964 KB
testcase_13 AC 58 ms
68,096 KB
testcase_14 AC 60 ms
68,480 KB
testcase_15 AC 59 ms
68,480 KB
testcase_16 AC 57 ms
69,504 KB
testcase_17 AC 57 ms
70,016 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.append(invl[l.index(ss)])
    print(*ans, sep="")
    return

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