結果

問題 No.2034 Anti Lexicography
ユーザー tassei903tassei903
提出日時 2022-08-14 16:43:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 75,060 KB
最終ジャッジ日時 2024-10-01 08:50:28
合計ジャッジ時間 1,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,240 KB
testcase_01 AC 38 ms
53,704 KB
testcase_02 AC 37 ms
52,468 KB
testcase_03 AC 37 ms
52,716 KB
testcase_04 AC 36 ms
52,460 KB
testcase_05 AC 51 ms
74,520 KB
testcase_06 AC 53 ms
74,228 KB
testcase_07 AC 47 ms
72,896 KB
testcase_08 AC 46 ms
73,628 KB
testcase_09 AC 47 ms
74,800 KB
testcase_10 AC 48 ms
75,060 KB
testcase_11 AC 47 ms
74,096 KB
testcase_12 AC 48 ms
73,896 KB
testcase_13 AC 39 ms
58,296 KB
testcase_14 AC 38 ms
58,476 KB
testcase_15 AC 39 ms
58,368 KB
testcase_16 AC 40 ms
58,176 KB
testcase_17 AC 40 ms
59,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
print("".join([chr(97+(25-(ord(i)-97)))for i in input()]))
0